mirror of
https://github.com/dirtbags/tanks.git
synced 2025-01-13 10:25:07 -07:00
14 lines
No EOL
226 B
Makefile
14 lines
No EOL
226 B
Makefile
CFLAGS = -Wall
|
|
LDFLAGS = -lm
|
|
|
|
all: run-tanks
|
|
|
|
test: test-tanks
|
|
./test-tanks | m4 round.html.m4 - > round.html
|
|
|
|
test-tanks: test-tanks.o ctanks.o
|
|
|
|
run-tanks: run-tanks.o ctanks.o cforf.o
|
|
|
|
clean:
|
|
rm -f test-tanks run-tanks *.o
|