diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-05-24 05:35:00 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-05-24 05:35:00 -0300 |
commit | 98280238383dc390207827d09dc92e0459229134 (patch) | |
tree | e2bc7c0877289165463dd6f9c2e77b570b22e29c /Makefile | |
parent | d37027bbd7ac13fdd0f1e2f01e1ec4b75b6c9588 (diff) | |
download | jet-98280238383dc390207827d09dc92e0459229134.tar.gz jet-98280238383dc390207827d09dc92e0459229134.zip |
Rewrite in c++
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |