summaryrefslogtreecommitdiff
path: root/Makefile
blob: be264eba8b9ce25b6491c980437df84274aae38b (plain)
1
2
3
4
5
6
7
8
9
10
FLAGS=-ggdb -O0 -fno-builtin -Wall -lcurses

jet: Makefile *.c
	gcc $(FLAGS) jet.c -o jet

page: Makefile page.c test/page.c
	gcc $(FLAGS) test/page.c -o page

point: Makefile point.c test/point.c
	gcc $(FLAGS) test/point.c -o point