mirror of
https://github.com/deater/tb1.git
synced 2025-01-20 17:32:19 +00:00
13 lines
194 B
Makefile
13 lines
194 B
Makefile
C_FLAGS=-Wall -O2 -g
|
|
|
|
all: tb_asm
|
|
|
|
tb_asm: tb_asm.o
|
|
gcc $(L_FLAGS) -o tb_asm tb_asm.o
|
|
|
|
tb_asm.o: tb_asm.c game_sprites.h
|
|
gcc $(C_FLAGS) -c tb_asm.c
|
|
|
|
clean:
|
|
rm -f *~ *.o tb_asm core
|