tb1/tb1_linux/level3/Makefile
Vince Weaver 137d2b45fd Move tb1 into its own subdir
I'm merging all the the tom bombem projects into one git tree
2012-12-18 21:24:06 -05:00

13 lines
194 B
Makefile

C_FLAGS=-Wall -O2 -g
all: level3
level3: level3.o
gcc $(L_FLAGS) -o level3 level3.o
level3.o: level3.c game_sprites.h
gcc $(C_FLAGS) -c level3.c
clean:
rm -f *~ *.o level3 core