dtstyle: Coverity 89456
[oweals/cde.git] / cde / programs / dtpdm / Imakefile
1 XCOMM $XConsortium: Imakefile /main/7 1996/10/09 14:13:27 drk $
2
3 /* General case INCLUDES DEFINES LOCAL_LIBRARIES
4  * Each individual architecture may have more or less of the above.
5  * USE_libraryname in LOCAL_LIBRARIES is by default empty.
6  * It should be set when necessary to the real library macro name.
7  */
8 DEPEND_DEFINES = $(DEPENDDEFINES)
9 DEFINES = -DCDE_INSTALLATION_TOP=\"$(CDE_INSTALLATION_TOP)\" -DI18N_MSG
10 INCLUDES = -I.
11
12 /* DEPLIBS contains the list of library depencies for a client.
13  * LOCAL_LIBRARIES contains the list of libraries on the link line.
14  * Generally, the dependency form of a library has DEP as a prefix.
15  * e.g. put $(XLIB) in LOCAL_LIBRARIES and $(DEPXLIB) in DEPLIBS.
16  * NOTE: if DEPLIBS is not set here, it is by default null and there
17  *       are no library dependencies for clients.
18  *       You cannot put -Llibpath into DEPLIBS. You must put actual
19  *       paths to the library.
20  */
21 DEPLIBS = DepDtClientLibs
22 LOCAL_LIBRARIES = DtClientLibs
23 SYS_LIBRARIES   = DtClientSysLibs DtClientExtraLibs
24
25 #ifdef RsArchitecture
26 SYS_LIBRARIES = -lmsaa -liconv
27 #endif
28
29 #if defined (SunArchitecture)
30 SYS_LIBRARIES = -lintl -lm -lgen -ldl
31 #endif
32
33 PROGRAMS = dtpdm
34
35 SRCS =  JobBox.c        Main.c          MainWindow.c \
36         PdmMsgs.c       PdmOid.c        PdmXp.c \
37         PrinterBox.c
38
39 OBJS =  JobBox.o        Main.o          MainWindow.o \
40         PdmMsgs.o       PdmOid.o        PdmXp.o \
41         PrinterBox.o
42
43 ComplexProgramTarget($(PROGRAMS))
44