home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume13
/
ishido
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1992-04-10
|
904b
|
40 lines
################################################################################
# Makefile for Ishido
#
################################################################################
HIGH_SCORE_FILE=/home/cd1/evu2/jjs40/tmp/ishido_scores
GAME_DIR=/home/cd1/evu2/jjs40/bin
################################################################################
# Libs for SunOS 4.1
LIBS= -lX11
# Libs for ISC Unix Sys V
# LIBS= -lX11 -linet -lpt
CFLAGS=-DHIGH_SCORE_FILE='"$(HIGH_SCORE_FILE)"'
################################################################################
OBJS= gl.o ishido.o
################################################################################
all: ishido
ishido: $(OBJS)
cc -o ishido $(OBJS) $(LIBS)
install: all
cp ishido $(GAME_DIR)
clean:
-rm *.o
-rm Part*
-rm ishido
shar: clean
find . -print | makekit