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