home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
games
/
volume15
/
ufo
/
part01
/
Makefile
next >
Wrap
Makefile
|
1993-01-27
|
247b
|
13 lines
# Simple Makefile for ufo
SRCS = ufo.c
OBJS = ufo.o
# On SysV you don't need the -ltermcap part
LIBS = -lcurses -ltermcap
# requires ANSI standard C compiler (and library)
CC = gcc
CFLAGS = -ansi
ufo: ufo.c
$(CC) -o ufo $(CFLAGS) ufo.c $(LIBS)