File: Makefile.am

package info (click to toggle)
hf 0.7.3-4etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,684 kB
  • ctags: 3,156
  • sloc: ansic: 26,447; cpp: 4,909; sh: 3,785; makefile: 309
file content (24 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
INCLUDES = \
	-I$(top_srcdir)/hfkernel/fsk -I$(top_srcdir)/hfkernel/l1 \
	-I$(top_srcdir)/hfkernel/mt63 -I$(top_srcdir) -I.

SUBDIRS = fsk l1 mt63 

EXTRA_DIST = vsnprintf.c 

if HAVEALSA
ALSALIBS = -lasound
else
ALSALIBS =
endif

MYLIBS = ./l1/libl1.a ./fsk/libfsk.a ./mt63/libmt63.a 
noinst_HEADERS = main.h msg.h 
bin_PROGRAMS = hfkernel 
hfkernel_SOURCES = main.c msg.c
hfkernel_DEPENDANCIES =	 $(noinst_HEADERS) $(hfkernel_SOURCES) $(MYLIBS)
hfkernel_LDADD = $(MYLIBS) \
	$(OSLIBS) $(SOCKLIBS) $(THRLIBS) $(SCHEDLIBS) $(ALSALIBS) -lstdc++

install-exec-hook:
	chmod 4755 $(DESTDIR)$(bindir)/hfkernel