home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
x
/
volume6
/
xplumb
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-04-11
|
602b
|
24 lines
# Hopefully, the only thing you'll need to change here is TOP, which should
# point to the top of your X11 source tree. If you want to build based on
# installed binaries, then you can remove the definition for INCLUDES, and
# make LIBX be "-lX11".
TOP = /a12c/X11R4-$$arch
INCLUDES = -I$(TOP)/mit
LIBX = $(TOP)/mit/lib/X/libX11.a
DEFINES = -Dvolatile= -Dsigned=
OBJS = main.o init.o screen.o timer.o board.o score.o queue.o piece.o \
level.o flow.o
.SUFFIXES: $(.SUFFIXES) .C
.C.o: $*.C
CC -c -g $(INCLUDES) $(DEFINES) $*.C
plumbing: $(OBJS)
rm -f plumbing
CC -o plumbing $(OBJS) $(LIBX)