/* Imakefile for InitBanner                                           */
/* 26.6.96 robert@www.asta.uni-essen.de                               */

/* setup is done entirely in configuration.h now!                     */
/* You should need to do much in here, excpt maybe add libraries      */

/* I need to get the #define XPM from configuration.h if its in there,*/
/* so that I can tell if I should include -lXpm                       */
#include <../../configure.h>

COMPILER

#ifdef XPM
XPMLIB = XPMLIBRARY

DEPLIBS = $(DEPXLIB) 

#ifdef AlphaArchitecture
LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -L../../lib -lafterstep  
#else
LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -L../../lib -lafterstep  
#endif

LINTLIBS = $(LINTXLIB)

SRCS = Banner.c
OBJS = Banner.o

TARGET_DIR

ComplexProgramTarget(Banner)


#endif





