-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile.am
29 lines (24 loc) · 1.15 KB
/
Makefile.am
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
# automake Makefile.am for Laprs (linux APRS(tm)) package
# APRS is a registered trademark of Bob Bruninga, WB4APR
SUFFIXES = .fig .html .8 .pdf
noinst_LIBRARIES = libaprs.a
sbin_PROGRAMS = aprsmon aprsdigi
noinst_PROGRAMS = mic_e_test testparse testmcast fiforead fifowrite
aprsmon_SOURCES = aprsmon.c aprsshm.c aprsshm.h
LDADD = libaprs.a
aprsdigi_SOURCES = aprsdigi.c
mic_e_test_SOURCES = mic_e_test.c
testparse_SOURCES = testparse.c
testmcast_SOURCES = testmcast.c
fiforead_SOURCES = fiforead.c
fifowrite_SOURCES = fifowrite.c
libaprs_a_SOURCES = mic_e.c mic_e.h libax25ext.c libax25ext.h
man_MANS = aprsdigi.8 aprsmon.8 fiforead.8 fifowrite.8
HTMLS = aprsdigi.html aprsmon.html fiforead.html fifowrite.html
noinst_SCRIPTS = $(HTMLS) aprsdigi.spec aprsdigi.init aprsdigi.service aprsbeacon.service aprsdigi.logrotate missing depcomp mkinstalldirs Vagrantfile bootstrap-aprsdev.sh
DOCS = aprsdigi.lsm parse_cooked_ax25.pdf parse_cooked_ax25.fig examples/README.examples examples/aprsdigi.conf examples/axports examples/aprsdigi-fc17.ks BUILD.md README.md
EXTRA_DIST= $(MANS) $(SCRIPTS) $(DOCS)
.8.html:
$(GROFF) -mandoc -Thtml $< >$@
.fig.pdf:
fig2dev -L pdf $< $@