summaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: b7806561f672a9368923502a771789db68d6e2e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

lib_LTLIBRARIES = libax25.la libax25io.la

libax25includedir = $(includedir)/netax25
libax25ioincludedir = $(includedir)/netax25

INCLUDES = -DAX25_SYSCONFDIR=\""$(sysconfdir)/ax25/"\" \
	   -DAX25_LOCALSTATEDIR=\""$(localstatedir)/ax25/"\" 

libax25include_HEADERS = 	\
	axlib.h		\
	axconfig.h	\
	nrconfig.h	\
	rsconfig.h	\
	daemon.h	\
	ttyutils.h	\
	procutils.h	\
	kernel_ax25.h	\
	kernel_rose.h	\
	kernel_netrom.h	\
	mheard.h	

libax25ioinclude_HEADERS = 	\
	ax25io.h

libax25_la_SOURCES = \
	axconfig.c \
	axconfig.h \
	axlib.h \
	axutils.c \
	config.h \
	daemon.c \
	daemon.h \
	mheard.h \
	nrconfig.c \
	nrconfig.h \
	pathnames.h \
	procutils.c \
	procutils.h \
	rsconfig.c \
	rsconfig.h \
	ttyutils.c \
	ttyutils.h  \
	kernel_ax25.h \
	kernel_rose.h
	
libax25io_la_SOURCES = \
	ax25io.c \
	ax25io.h 

man_MANS = ax25.3 rose.3 axports.5 rsports.5 nrports.5


EXTRA_DIST= $(man_MANS) glibc.patch $(etcfiles)

AX25_SYSCONFDIR=@sysconfdir@/ax25/
AX25_LOCALSTATEDIR=@localstatedir@/ax25/

# Needed so that the install is optional
etcdir = $(AX25_SYSCONFDIR)
etcfiles =  axports rsports nrports
installconf:
	$(mkinstalldirs) $(DESTDIR)$(etcdir)
	@list='$(etcfiles)'; for p in $$list; do \
	  echo " $(INSTALL_DATA) $$p $(DESTDIR)$(etcdir)/$$p"; \
	  $(INSTALL_DATA) $$p $(DESTDIR)$(etcdir)/$$p; \
	done