mirror of https://github.com/dirtbags/tanks.git
22 lines
385 B
Makefile
22 lines
385 B
Makefile
DESTDIR ?= $(HOME)
|
|
CFLAGS = -Wall
|
|
|
|
BINARIES = forftanks upload.cgi
|
|
|
|
all: $(BINARIES)
|
|
|
|
install: $(BINARIES)
|
|
install -d $(DESTDIR)$(PREFIX)/bin
|
|
install $(BINARIES) $(DESTDIR)$(PREFIX)/bin
|
|
|
|
forftanks: forftanks.o ctanks.o forf.o
|
|
forftanks: LDLIBS = -lm
|
|
|
|
forftanks.o: forf.h ctanks.h
|
|
forf.o: forf.c forf.h
|
|
ctanks.o: ctanks.h
|
|
|
|
clean:
|
|
rm -f *.o next-round round-*.html
|
|
rm -f $(BINARIES)
|