home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume5
/
mazewar-V
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-12-13
|
445b
|
16 lines
SHELL=/bin/sh
CFLAGS=-O
SRCES= user.c daemon.c maze.c
INCLS= globals.h
OBJS = $(SRCES:.c=.o)
all: mazewar mazedaemon
mazewar: user.o maze.o
cc user.o maze.o -lcurses -ltermcap -o mazewar
mazedaemon: daemon.o maze.o
cc daemon.o maze.o -o mazedaemon
$(OBJS): globals.h
tape:; tar cv README Makefile $(INCLS) $(SRCES)
clean:; rm -f a.out core $(OBJS)
love:; @echo "my place or yours?"
shar:; shar README Makefile $(INCLS) $(SRCES) > mazewar.shar