home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / games / volume15 / ufo / part01 / Makefile next >
Makefile  |  1993-01-27  |  247b  |  13 lines

  1. # Simple Makefile for ufo
  2. SRCS = ufo.c
  3. OBJS = ufo.o
  4. # On SysV you don't need the -ltermcap part
  5. LIBS = -lcurses -ltermcap
  6.  
  7. # requires ANSI standard C compiler (and library)
  8. CC = gcc
  9. CFLAGS = -ansi
  10.  
  11. ufo: ufo.c
  12.     $(CC) -o ufo $(CFLAGS) ufo.c $(LIBS)
  13.