home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume5 / mazewar-V / Makefile < prev    next >
Makefile  |  1990-12-13  |  445b  |  16 lines

  1. SHELL=/bin/sh
  2. CFLAGS=-O
  3. SRCES= user.c daemon.c maze.c
  4. INCLS= globals.h
  5. OBJS = $(SRCES:.c=.o)
  6. all:    mazewar mazedaemon
  7. mazewar:    user.o maze.o
  8.     cc user.o maze.o -lcurses -ltermcap -o mazewar
  9. mazedaemon:    daemon.o maze.o
  10.     cc daemon.o maze.o -o mazedaemon
  11. $(OBJS):    globals.h
  12. tape:;    tar cv README Makefile $(INCLS) $(SRCES)
  13. clean:;    rm -f a.out core $(OBJS)
  14. love:;    @echo "my place or yours?"
  15. shar:;    shar README Makefile $(INCLS) $(SRCES) > mazewar.shar
  16.