diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-08 00:13:33 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-08 00:13:33 +0000 |
commit | 78a3bf6c9b7d253dddcbea4da066b4b8a3999745 (patch) | |
tree | e468b47dd02ed32100f970a3b35ccfd50143dfc2 /TOOLS/bmovl-test | |
parent | 5cc6005c86b2988f1cb1f6b0910dce1e2eb30075 (diff) | |
download | mpv-78a3bf6c9b7d253dddcbea4da066b4b8a3999745.tar.bz2 mpv-78a3bf6c9b7d253dddcbea4da066b4b8a3999745.tar.xz |
Create binaries with proper executable suffix under Windows.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20771 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/bmovl-test')
-rw-r--r-- | TOOLS/bmovl-test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/bmovl-test/Makefile b/TOOLS/bmovl-test/Makefile index 0ba25590e5..7b1d7a8f53 100644 --- a/TOOLS/bmovl-test/Makefile +++ b/TOOLS/bmovl-test/Makefile @@ -1,7 +1,7 @@ include ../../config.mak -bmovl-test: bmovl-test.c - $(CC) -O3 $(SDL_INC) -lSDL_image -o bmovl-test bmovl-test.c +bmovl-test$(EXESUF): bmovl-test.c + $(CC) -O3 $(SDL_INC) -lSDL_image -o $@ bmovl-test.c clean: rm -f bmovl-test |