aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cbd7609..f41cff6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
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
CFLAGS=-I. -std=gnu99 -g
-all: $(SOURCES)
+all: $(SOURCES) $(HEADERS)
g++ $(SOURCES) -lncurses
clean:
rm -f $(SOURCES) a.out *~