Files
cdesktop/cde/programs/dtmail/MotifApp/Makefile.am
Jon Trulson c329d5cfd7 Remove $(TIRPCINC) from all Makefile.am files - it no longer exists
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.
2019-11-20 18:52:29 -07:00

44 lines
1.1 KiB
Makefile

MAINTAINERCLEANFILES = Makefile.in
noinst_LIBRARIES = libMotifApp.a
libMotifApp_a_CXXFLAGS = -I../include/MotifApp -I../include -I../include/utils
# FIXME - some of these aren't set and sould be by configure.ac
#if SOLARIS
#if USE_SPRO_V3
#libMotifApp_a_CXXFLAGS += -noex -xO0 -USPRO_V2
#endif
#if DEBUGTREE
#libMotifApp_a_CXXFLAGS += -xsb
#endif
#
#libMotifApp_a_CXXFLAGS += -DMMAP_NORESERVE -DSPRO_V2
#endif
libMotifApp_a_SOURCES = Application.C AskFirstCmd.C \
BasicComponent.C BusyPixmap.C \
ButtonInterface.C Cmd.C \
CmdInterface.C CmdList.C \
DialogManager.C Help.C \
IconifyCmd.C InfoDialogManager.C \
InterruptibleCmd.C Main.C \
MainWindow.C ManageCmd.C \
MenuBar.C MenuWindow.C \
MotifCmds.C NoUndoCmd.C \
PixmapCycler.C PromptDialogManager.C \
QuestionDialogManager.C QuitCmd.C \
ScrollingList.C SelectFileCmd.C \
ToggleButtonInterface.C UIComponent.C \
UndoCmd.C WarnNoUndoCmd.C \
WorkingDialogManager.C
if SOLARIS
clean-local:
$(RM) -r .sb
$(RM) .make.state*
endif