Also, restructure some of the dependencies in the lib/tt binaries. We
will link with libtt (which will include libtirpc as a dependency),
and XTOOLLIB - all the right X11 stuff without needing to add it to
every OS. Removed several uneeded OS specializations ("if LINUX",
etc) as a result.
19 lines
647 B
Makefile
19 lines
647 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
bin_PROGRAMS = dtcreate
|
|
|
|
dtcreate_LDADD = $(DTCLIENTLIBS) $(XTOOLLIB)
|
|
|
|
if SOLARIS
|
|
dtcreate_LDADD += -ldl
|
|
endif
|
|
|
|
dtcreate_SOURCES = main.c AddFiletype.c Confirmed.c \
|
|
CreateActionAppShell.c FileCharacteristics.c OpenFile.c \
|
|
UxXt.c ca_aux.c cmncbs.c cmnutils.c cmnrtns.c ErrorDialog.c \
|
|
fileio.c af_aux.c icon_selection_dialog.c parser.c \
|
|
AddFiletype.h Confirmed.h icon_selection_dialog.h af_aux.h \
|
|
CreateActionAppShell.h OpenFile.h ca_aux.h dtcreate.h \
|
|
parser.h cmncbs.h ErrorDialog.h UxXt.h cmnrtns.h \
|
|
FileCharacteristics.h cmnutils.h fileio.h
|