aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c24d8a65a562419de7d9e76bb1f0fbb342016a61 (plain)
1
2
3
4
5
6
7
8
SOURCES=joshua.o server.o util.o chatbot.o gtnw.o strings.o
HEADERS=chatbot.h gtnw.h joshua.h location.h strings.h map.h util.h
CFLAGS=-std=gnu99 -g -O3
wargames: $(SOURCES) $(HEADERS)
	g++ $(SOURCES) $(CXXFLAGS) -o wargames
all: wargames Makefile
clean:
	rm -f $(SOURCES) a.out wargames *~