From 98280238383dc390207827d09dc92e0459229134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Tom=C3=A1s?= Date: Sun, 24 May 2020 05:35:00 -0300 Subject: Rewrite in c++ --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3