blob: b50b5a13bb497243bb46f8752fa90defd0cc3134 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FLAGS=-ggdb -O0 -fno-builtin -Wall -lcurses
jet: Makefile *.cpp
g++ $(FLAGS) jet.cpp -o jet
page: Makefile page.cpp test/page.cpp
g++ $(FLAGS) test/page.cpp -o page
point: Makefile page.cpp point.cpp test/point.cpp
g++ $(FLAGS) test/point.cpp -o point
|