Imakefile 796 B

12345678910111213141516171819202122
  1. XCOMM $TOG: Imakefile /main/11 1997/05/02 12:24:38 samborn $
  2. PROGRAMS = dthelpprint
  3. INCLUDES = -I. -I$(DTHELPSRC)
  4. DEFINES = -DDTLIB $(ICONV_INBUF_DEFINE) \
  5. -DCDE_CONFIGURATION_TOP='"$(CDE_CONFIGURATION_TOP)"' \
  6. -DCDE_INSTALLATION_TOP='"$(CDE_INSTALLATION_TOP)"'
  7. DEPLIBS = $(DEPDTHELPLIB) $(DEPDTSVCLIB) $(DEPTTLIB) $(DEPXMLIB) $(DEPXTOOLLIB) $(DEPXLIB)
  8. LOCAL_LIBRARIES = $(DTHELPLIB) $(DTSVCLIB) $(TTLIB) $(XMLIB) $(XTOOLLIB) $(XLIB)
  9. /* Sun needs the widechar library */
  10. #ifdef SunArchitecture
  11. SYS_LIBRARIES = DtClientSysLibs -lw $(CXXLIB)
  12. #else
  13. SYS_LIBRARIES = DtClientSysLibs $(CXXLIB)
  14. #endif
  15. SRCS = Main.c Initialize.c PrintUtil.c PrintTopics.c PrintManStrFile.c
  16. OBJS = Main.o Initialize.o PrintUtil.o PrintTopics.o PrintManStrFile.o
  17. ComplexProgramTarget($(PROGRAMS))