/* * * * This software comes with NO warranty whatsoever. I therefore take no * responsibility for any damages, losses or problems caused through use * or misuse of this program. * * I hereby grant permission for this program to be freely copied and * distributed by any means, provided no charge is made for it. * * Matthew Chapman, csuoq@csv.warwick.ac.uk * June 1995. */ /* main Imakefile */ SETUP_SRCS = setup.c xutils.c SETUP_OBJS = setup.o xutils.o SRCS = init.c xinit.c misc.c moves.c cmove.c main.c xutils.c mess.c \ popup.c widgets.c display.c user.c CircPerc.c OBJS = init.o xinit.o misc.o moves.o cmove.o main.o xutils.o mess.o \ popup.o widgets.o display.o user.o CircPerc.o LOCAL_LIBS = XawClientLibs DEPLIBS = XawClientDepLibs PROGRAMS = xscrab xscrabble SYS_LIBRARIES = -lXpm -L../Xc -lXc EXTRA_LIBS = -lz -lbz2 SLIBS = INCLUDES = -I.. CCOPTIONS = AllTarget($(PROGRAMS)) NormalProgramTarget(xscrab,$(OBJS),$(DEPLIBS),$(LOCAL_LIBS),$(EXTRA_LIBS)) NormalProgramTarget(xscrabble,$(SETUP_OBJS),$(DEPLIBS),$(LOCAL_LIBS),$(SLIBS)) DependTarget()