#
# This is the Makefile for xminesweep.
# 
DEFS           = -DCHEAT_OK
CFLAGS         = -O $(DEFS) -I/usr/X11/include -DUSL -DSYSV -DSYSV386
CC             = cc
LIBS = -L/usr/X11/lib -lXaw -lXt -lXmu -lXext -lX11 -lXbsd
OBJS = xminesweep.o misc.o callbacks.o
SRCS = xminesweep.c misc.c callbakcs.c

xminesweep: $(OBJS)
	$(CC) -o xminesweep $(OBJS) $(DEFS) $(LIBS)

clean:
	rm -f core  *.o *~ #*

allclean:
	rm xminesweep
	rm -f core  *.o *~ #*

