summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2020-05-24 05:35:00 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2020-05-24 05:35:00 -0300
commit98280238383dc390207827d09dc92e0459229134 (patch)
treee2bc7c0877289165463dd6f9c2e77b570b22e29c /Makefile
parentd37027bbd7ac13fdd0f1e2f01e1ec4b75b6c9588 (diff)
downloadjet-98280238383dc390207827d09dc92e0459229134.tar.gz
jet-98280238383dc390207827d09dc92e0459229134.zip
Rewrite in c++
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 2e84b40..b50b5a1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
FLAGS=-ggdb -O0 -fno-builtin -Wall -lcurses
-jet: Makefile *.c
- gcc $(FLAGS) jet.c -o jet
+jet: Makefile *.cpp
+ g++ $(FLAGS) jet.cpp -o jet
-page: Makefile page.c test/page.c
- gcc $(FLAGS) test/page.c -o page
+page: Makefile page.cpp test/page.cpp
+ g++ $(FLAGS) test/page.cpp -o page
-point: Makefile page.c point.c test/point.c
- gcc $(FLAGS) test/point.c -o point
+point: Makefile page.cpp point.cpp test/point.cpp
+ g++ $(FLAGS) test/point.cpp -o point