1/* Imakefile for InitBanner                                           */
2/* 26.6.96 robert@www.asta.uni-essen.de                               */
3
4/* setup is done entirely in configuration.h now!                     */
5/* You should need to do much in here, excpt maybe add libraries      */
6
7/* I need to get the #define XPM from configuration.h if its in there,*/
8/* so that I can tell if I should include -lXpm                       */
9#include <../../configure.h>
10
11COMPILER
12
13#ifdef XPM
14XPMLIB = XPMLIBRARY
15
16DEPLIBS = $(DEPXLIB)
17
18#if defined(AlphaArchitecture) && !defined(FreeBSDArchitecture)
19LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -L../../lib -lafterstep
20#else
21LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -L../../lib -lafterstep
22#endif
23
24LINTLIBS = $(LINTXLIB)
25
26SRCS = Banner.c
27OBJS = Banner.o
28
29TARGET_DIR
30
31ComplexProgramTarget(Banner)
32
33
34#endif
35
36
37
38
39
40