programs/dtaction: add automake file

This commit is contained in:
Chase 2019-10-22 21:34:58 -05:00 committed by Jon Trulson
parent 4f8d7b3894
commit 4984f3db19
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
MAINTAINERCLEANFILES = Makefile.in
bin_PROGRAMS = dtaction
dtaction_SOURCES = Main.c
dtaction_LDADD = -lm ${X_LIBS} $(LIBTT) $(LIBSVC) $(XTOOLLIB)
if HPUX
dtaction_LDADD += +e
endif
if AIX
dtaction_LDADD += -liconv
endif
if SUN
dtaction_LDADD += -ldl
endif
if LINUX
dtaction_LDADD += -lcrypt
endif
if FREEBSD
dtaction_LDADD += -lcrypt
endif
if NETBSD
dtaction_LDADD += -lcrypt
endif