1/*
2 *
3 *
4 * This software comes with NO warranty whatsoever. I therefore take no
5 * responsibility for any damages, losses or problems caused through use
6 * or misuse of this program.
7 *
8 * I hereby grant permission for this program to be freely copied and
9 * distributed by any means, provided no charge is made for it.
10 *
11 * Matthew Chapman, csuoq@csv.warwick.ac.uk
12 *    June 1995.
13 */
14
15/* main Imakefile */
16
17   SETUP_SRCS = setup.c xutils.c
18   SETUP_OBJS = setup.o xutils.o
19
20         SRCS = init.c xinit.c misc.c moves.c cmove.c main.c xutils.c mess.c \
21	 	popup.c widgets.c display.c user.c CircPerc.c
22
23         OBJS = init.o xinit.o misc.o moves.o cmove.o main.o xutils.o mess.o \
24	 	popup.o widgets.o display.o user.o CircPerc.o
25
26   LOCAL_LIBS = XawClientLibs
27      DEPLIBS = XawClientDepLibs
28     PROGRAMS = xscrab xscrabble
29SYS_LIBRARIES = -lXpm -L../Xc -lXc
30   EXTRA_LIBS = -lz -lbz2
31        SLIBS =
32
33     INCLUDES = -I..
34    CCOPTIONS =
35
36AllTarget($(PROGRAMS))
37
38NormalProgramTarget(xscrab,$(OBJS),$(DEPLIBS),$(LOCAL_LIBS),$(EXTRA_LIBS))
39NormalProgramTarget(xscrabble,$(SETUP_OBJS),$(DEPLIBS),$(LOCAL_LIBS),$(SLIBS))
40
41DependTarget()
42
43