Files
cdesktop/cde/programs/dtaction/Imakefile
Jon Trulson cdf8003f7c Remove hardcoded CCLINK's in Imakefiles when linking with C++ built libs (DtSvc).
Added proper SharedDtSvcReqs in lnxLib.tmpl and CplusplusLibC in
linux.cf.  This allows the libstdc++ dependancy to be properly
declared for libDtSvc so that it is not neccessary to hardcode 'CCLINK
= g++' in the Imakefiles of programs linking angainst libDtSvc.
2012-06-19 16:27:20 -06:00

43 lines
757 B
Plaintext

XCOMM $TOG: Imakefile /main/9 1998/04/06 13:11:38 mgreess $
DEFINES = -DXK_MISCELLANY
INCLUDES = -I.
DEPLIBS = $(DEPDTSVCLIB) $(DEPTTLIB) $(DEPXMLIB) $(DEPXTOOLLIB) $(DEPXLIB)
LOCAL_LIBRARIES = $(DTSVCLIB) $(TTLIB) $(XMLIB) $(XTOOLLIB) $(XLIB)
SYS_LIBRARIES = -lm
#ifdef HPArchitecture
EXTRA_DEFINES = +e
#endif
#ifdef LinuxArchitecture
SYS_LIBRARIES = -lm -lcrypt
#endif
#ifdef SCOArchitecture
SYS_LIBRARIES = -lm -lcrypt
#endif
#ifdef RsArchitecture
SYS_LIBRARIES = -liconv
#endif
#ifdef USLArchitecture
SYS_LIBRARIES = -lm -lgen
#endif
#ifdef UXPArchitecture
SYS_LIBRARIES = -lm -lgen
#endif
#if defined(SunArchitecture)
SYS_LIBRARIES = -lm -ldl
#endif
SRCS = Main.c
OBJS = Main.o
ComplexProgramTarget(dtaction)