Imakefile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. XCOMM $XConsortium: Imakefile /main/6 1996/10/30 19:10:03 cde-hp $
  2. /*********************************************************************
  3. * (c) Copyright 1993, 1994 Hewlett-Packard Company
  4. * (c) Copyright 1993, 1994 International Business Machines Corp.
  5. * (c) Copyright 1993, 1994 Sun Microsystems, Inc.
  6. * (c) Copyright 1993, 1994 Unix System Labs, Inc., a subsidiary of
  7. * Novell, Inc.
  8. **********************************************************************/
  9. DESKTOP_VERSION_STRING = DesktopVersionString
  10. XCOMM
  11. XCOMM Imakefile: for DT Print Dialog Manager Daemon
  12. XCOMM
  13. /* General case INCLUDES DEFINES LOCAL_LIBRARIES
  14. * Each individual architecture may have more or less of the above.
  15. * Use EXTRA_DEFINES and EXTRA_INCLUDES to add defines and includes
  16. * to an individual architecture. There is no equivalent for
  17. * LOCAL_LIBRARIES.
  18. * USE_libraryname in LOCAL_LIBRARIES is by default empty.
  19. * It should be set when necessary to the real library macro name.
  20. */
  21. DEFINES = -DCDE_INSTALLATION_TOP='"'$(CDE_INSTALLATION_TOP)'"'
  22. INCLUDES = -I.
  23. DEPLIBS = $(DEPXTOOLLIB) $(DEPXPLIB) $(DEPXAUTHLIB) $(DEPXLIB)
  24. LOCAL_LIBRARIES = $(XTOOLLIB) $(XPLIB) $(XAUTHLIB) $(XLIB)
  25. SYS_LIBRARIES = DtClientSysLibs
  26. SRCS = dispatch.c dtpdmd.c mailbox.c \
  27. manager.c records.c setup.c \
  28. util.c nlmsg.c
  29. OBJS = dispatch.o dtpdmd.o mailbox.o \
  30. manager.o records.o setup.o \
  31. util.o nlmsg.o
  32. #if defined(LinuxArchitecture) || defined(BSDArchitecture)
  33. /* On Linux, just use the system provided Xau */
  34. DEPXAUTHLIB =
  35. #endif
  36. ComplexProgramTarget(dtpdmd)