home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 10
/
aminetcdnumber101996.iso
/
Aminet
/
game
/
think
/
cc3_11.lha
/
ChinaChallenge3
/
C
/
makefile
< prev
Wrap
Makefile
|
1995-11-26
|
228b
|
16 lines
CC = gcc
CFLAGS = -V2.3.3 -O2 -msmall-code -fbaserel -fno-builtin
LFLAGS = -noixemul -fbaserel
LDLIBS = -lamiga -lmath
OBJS = cc3.o img.o alias.o
# the game :)
CC3: $(OBJS)
$(CC) $(LFLAGS) -o $@ $(OBJS) $(LDLIBS)