diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2,3 +2,9 @@ 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 |