From 8c794424006d7f35d7531f1c79e27f6a7ce9958c Mon Sep 17 00:00:00 2001 From: Joshua Grams Date: Wed, 12 Apr 2006 16:57:21 +0000 Subject: [PATCH] Makefile.win fixes --- Makefile.win | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.win b/Makefile.win index 92af68b..90ceab3 100644 --- a/Makefile.win +++ b/Makefile.win @@ -15,8 +15,9 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +CC := gcc LDFLAGS := -mwindows -lmingw32 -lSDLmain -lSDL -lSDL_image -lSDL_mixer -CFLAGS := -Wall -O3 +CFLAGS := -Wall -O3 -ISDL my_objects := args.o dust.o file.o mt.o rocks.o score.o sprite.o sound.o my_objects += main.o @@ -62,7 +63,8 @@ sound.o: sound.h args.h common.h sprite.o: sprite.h common.h vor: $(objects) - $(CC) $(LDFLAGS) -o $@ $^ + $(CC) $^ $(LDFLAGS) -o $@ clean: - del vor *.o + del vor + del *.o -- 1.7.10.4