Don't use fstat for readable pipe chars in dtexec.
[oweals/cde.git] / cde / programs / dtdbcache / Imakefile
1 XCOMM $XConsortium: Imakefile /main/5 1996/09/14 15:26:52 drk $
2
3 /* General case INCLUDES DEFINES LOCAL_LIBRARIES
4  * Each individual architecture may have more or less of the above.
5  * Use EXTRA_DEFINES and EXTRA_INCLUDES to add defines and includes
6  * to an individual architecture.  There is no equivalent for
7  * LOCAL_LIBRARIES.
8  * USE_libraryname in LOCAL_LIBRARIES is by default empty.
9  * It should be set when necessary to the real library macro name.
10  */
11
12         DEFINES = -DXK_MISCELLANY
13
14        INCLUDES = -I.
15
16 /* DEPLIBS contains the list of library depencies for a client.
17  * LOCAL_LIBRARIES contains the list of libraries on the link line.
18  * Generally, the dependency form of a library has DEP as a prefix.
19  * e.g. put $(XLIB) in LOCAL_LIBRARIES and $(DEPXLIB) in DEPLIBS.
20  * NOTE: if DEPLIBS is not set here, it is by default null and there
21  *       are no library dependencies for clients.
22  *       You cannot put -Llibpath into DEPLIBS. You must put actual
23  *       paths to the library.
24  */
25 DEPLIBS = $(DEPDTSVCLIB) $(DEPTTLIB) $(DEPXMLIB) $(DEPXPLIB) \
26           $(DEPXTOOLLIB) $(DEPXLIB)
27 LOCAL_LIBRARIES = $(DTSVCLIB) $(TTLIB) $(XMLIB) $(XPLIB) $(XTOOLLIB) $(XLIB)
28 SYS_LIBRARIES   = -lm 
29
30
31 #ifdef HPArchitecture
32 EXTRA_DEFINES = +e
33 #endif
34
35 #ifdef SCOArchitecture
36 ATLIB=
37 SYS_LIBRARIES   = -lm -lcrypt
38 #endif
39
40 #ifdef RsArchitecture
41 ATLIB=
42 #endif
43
44 #ifdef USLArchitecture
45 SYS_LIBRARIES   = -lm -lgen 
46 ATLIB=
47 #endif
48
49 #if defined(HPOSFArchitecture)
50 #endif
51
52 #if defined(SunArchitecture)
53 ATLIB=
54 SYS_LIBRARIES = -lm -ldl -lw -lgen
55 #endif /* SunArchitecture */
56
57 #if defined(UXPArchitecture)
58 SYS_LIBRARIES = -lm -lgen
59 #endif
60
61 SRCS = Main.c
62 OBJS = Main.o
63
64 ComplexProgramTarget(dtdbcache)
65