From f8ba07efd1df831dadc4839bd2e91aa63aa8921e Mon Sep 17 00:00:00 2001 From: Chase Date: Wed, 23 Oct 2019 14:25:12 -0500 Subject: [PATCH] programs/dthello: add automake file --- cde/programs/dthello/Makefile.am | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cde/programs/dthello/Makefile.am diff --git a/cde/programs/dthello/Makefile.am b/cde/programs/dthello/Makefile.am new file mode 100644 index 00000000..27595b1a --- /dev/null +++ b/cde/programs/dthello/Makefile.am @@ -0,0 +1,16 @@ +MAINTAINERCLEANFILES = Makefile.in + +bin_PROGRAMS = dthello + +dthello_LDADD = ${X_LIBS} -lm $(XTOOLLIB) ../DtSvc/DtUtil2/EnvControl.o \ + ../DtSvc/DtUtil2/DtNlUtils.o ../DtSvc/DtUtil2/GetDispRes.o + +if HPUX +dthello_LDADD = -DHP_COLOR +endif + +if SUN +dthello_LDADD = -ldl -lgen +endif + +dthello_SOURCES = dthello.c -- 2.25.1