Files
cdesktop/cde/programs/dthello/Makefile.am
Jon Trulson e10d06f210 configure/Makefiles: add checks for Xmu, Xext, and Xdmcp
We also remove sun pro specific options, and do some general cleanup
as well as remove hardcoded library refs like -lXm, -lXext, etc...
2021-12-21 16:42:22 -07:00

24 lines
371 B
Makefile

MAINTAINERCLEANFILES = Makefile.in
bin_PROGRAMS = dthello
dthello_LDADD = $(DTCLIENTLIBS) $(XTOOLLIB)
if SOLARIS
dthello_LDADD += -ldl -lgen
endif
if LINUX
dthello_LDADD += $(TIRPCLIB)
endif
dthello_SOURCES = dthello.c
CPP_TARGETS = Dthello
BUILT_SOURCES = $(CPP_TARGETS)
CLEANFILES = $(CPP_TARGETS)
Dthello: Dthello.src
$(RM) $@
$(GENCPP) -P -DXCOMM=# $< > $@