diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-10-06 16:00:00 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-10-06 16:00:00 +0000 |
commit | a3fd1b04aa21680902104e6271ee7c2c1780ff28 (patch) | |
tree | dfb1dd0612d2d2ebab0f24036a8290dcaeffdcdb /TOOLS | |
parent | 5b829d877a6c9d0b404f6cb2cc37029f6dd76fc4 (diff) | |
download | mpv-a3fd1b04aa21680902104e6271ee7c2c1780ff28.tar.bz2 mpv-a3fd1b04aa21680902104e6271ee7c2c1780ff28.tar.xz |
Made Makefile conform to the general MPlayer style, clean target added.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13572 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-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 |