diff options
-rw-r--r-- | TOOLS/bmovl-test/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/TOOLS/bmovl-test/Makefile b/TOOLS/bmovl-test/Makefile index 2473ce3df9..0ba25590e5 100644 --- a/TOOLS/bmovl-test/Makefile +++ b/TOOLS/bmovl-test/Makefile @@ -1,2 +1,7 @@ +include ../../config.mak + bmovl-test: bmovl-test.c - cc -O3 -I/usr/local/include/SDL -I/usr/include/SDL -L/usr/local/lib -lSDL_image -o bmovl-test bmovl-test.c + $(CC) -O3 $(SDL_INC) -lSDL_image -o bmovl-test bmovl-test.c + +clean: + rm -f bmovl-test |