home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Encyclopedia of Games 3
/
GAMES1000V3_d2.iso
/
sports
/
2503
/
src
/
makefile.
< prev
next >
Wrap
Makefile
|
1995-05-23
|
526b
|
15 lines
CFLAGS=-Wall -O2 -m486 -ffast-math -g -c
O_FILES=graphics.o apool.o computer.o physics.o creatabl.o
apool.exe: $(O_FILES)
gcc -o apool $(O_FILES) -lgrx20l -lm -lpc
coff2exe apool
graphics.o: graphics.c apool.h
gcc $(CFLAGS) graphics.c -o graphics.o
apool.o: apool.c apool.h
gcc $(CFLAGS) apool.c -o apool.o
computer.o: computer.c apool.h
gcc $(CFLAGS) computer.c -o computer.o
physics.o: physics.c apool.h
gcc $(CFLAGS) physics.c -o physics.o
creatabl.o: creatabl.c
gcc $(CFLAGS) creatabl.c -o creatabl.o