summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2e84b40678693ee462b371cf838630679c563870 (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 page.c point.c test/point.c
	gcc $(FLAGS) test/point.c -o point