diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-04-23 06:34:01 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-04-23 06:34:01 -0300 |
commit | 6947a5feb7c21c454eb1f297cc0b792e21b564c6 (patch) | |
tree | 3dbe0210e327def6f824b2ed9ea4254a9d4585fc /Makefile | |
parent | f0ac81b432384b8763ec737e88d6675228e13c33 (diff) | |
download | jet-6947a5feb7c21c454eb1f297cc0b792e21b564c6.tar.gz jet-6947a5feb7c21c454eb1f297cc0b792e21b564c6.zip |
Update tests
Testing pages and points are now separate.
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 |