aboutsummaryrefslogtreecommitdiffstats
path: root/YetiHack/src/Makefile
diff options
context:
space:
mode:
authorRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:12:17 -0900
committerRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:12:17 -0900
commit4e87a290412cea63f548760de6f4a91b1d1ba352 (patch)
tree4d60cea3683dafbe56cc8f6474078fc8f7016608 /YetiHack/src/Makefile
downloadyetihack-4e87a290412cea63f548760de6f4a91b1d1ba352.tar.zst
yetihack v.1
Diffstat (limited to 'YetiHack/src/Makefile')
-rw-r--r--YetiHack/src/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/YetiHack/src/Makefile b/YetiHack/src/Makefile
new file mode 100644
index 0000000..4dd3f89
--- /dev/null
+++ b/YetiHack/src/Makefile
@@ -0,0 +1,9 @@
+yetihack: YetiHack.o yeti.o
+ g++ -o yetihack YetiHack.o yeti.o -lncurses
+
+YetiHack.o: YetiHack.cpp
+ g++ -I../include -o YetiHack.o -c YetiHack.cpp
+
+yeti.o: yeti.cpp
+ g++ -I../include -o yeti.o -c yeti.cpp
+