version 0.6
[zeRace] / Makefile
index a359dba..b899460 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,25 +4,25 @@ SDLCONFIG=sdl-config
 all:zeRace server bot_anticip
 
 zeRace:zeRace.c network.h sdl.o car.o tracklist.o $(ICON)
-       $(CC) -ansi -Wall -o zeRace$(EXT) zeRace.c sdl.o car.o tracklist.o $(ICON) `$(SDLCONFIG) --cflags --libs` -lSDL_net -lSDL_mixer -lSDL_image -lSDL_gfx -L.
+       $(CC) -o zeRace$(EXT) zeRace.c sdl.o car.o tracklist.o $(ICON) `$(SDLCONFIG) --cflags --libs` -lSDL_net -lSDL_mixer -lSDL_image -lSDL_gfx -L.
 
 server:server.c network.h sdl.o car.o tracklist.o
-       $(CC) -ansi -Wall -o server$(EXT) server.c sdl.o car.o tracklist.o `$(SDLCONFIG) --cflags --libs` -lSDL_net -lSDL_image -L.
+       $(CC) -o server$(EXT) server.c sdl.o car.o tracklist.o `$(SDLCONFIG) --cflags --libs` -lSDL_net -lSDL_image -L.
 
 bot_anticip:bot_anticip.c bot.o sdl.o car.o tracklist.o
-       $(CC) -ansi -Wall -o bot_anticip$(EXT) bot_anticip.c bot.o sdl.o car.o tracklist.o `$(SDLCONFIG) --cflags --libs` -lSDL_net -lSDL_image -L.
+       $(CC) -o bot_anticip$(EXT) bot_anticip.c bot.o sdl.o car.o tracklist.o `$(SDLCONFIG) --cflags --libs` -lSDL_net -lSDL_image -L.
 
 sdl.o:sdl.c sdl.h
-       $(CC) -ansi -Wall -c sdl.c `$(SDLCONFIG) --cflags`
+       $(CC) -c sdl.c `$(SDLCONFIG) --cflags`
 
 car.o:car.c car.h sdl.h
-       $(CC) -ansi -Wall -c car.c `$(SDLCONFIG) --cflags`
+       $(CC) -c car.c `$(SDLCONFIG) --cflags`
 
 tracklist.o:tracklist.c tracklist.h
-       $(CC) -ansi -Wall -c tracklist.c
+       $(CC) -c tracklist.c
 
 bot.o:bot.c sdl.o car.o tracklist.o
-       $(CC) -ansi -Wall -c bot.c `$(SDLCONFIG) --cflags`
+       $(CC) -c bot.c `$(SDLCONFIG) --cflags`
 
 icon.o:icon.rc
        $(WINDRES) -i icon.rc -o icon.o