Introduce pet-projects dir
[lcapit-junk-code.git] / pet-projects / games / seabattle / Makefile
blob1312a38059418ea19a3906e29897d668a243b63e
1 BIN=seabattle
2 CFLAGS=-Wall -W -Wmissing-declarations -Wmissing-prototypes -O2 \
3 -Wredundant-decls -Wshadow -Wbad-function-cast -Wcast-qual
4 LIBS=$(shell allegro-config --libs)
6 all: $(BIN)
8 seabattle: $(BIN).c
9 cc -o $@ $< $(CFLAGS) $(LIBS)
11 tags:
12 find . -name '*.[hcS]' -print | xargs ctags -a
14 clean:
15 rm -f $(BIN) *.o *~ tags core.*