diff options
Diffstat (limited to 'src/Makefile')
| -rwxr-xr-x | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 25db7f8..cfc9478 100755 --- a/src/Makefile +++ b/src/Makefile @@ -9,7 +9,7 @@ CFLAGS = -g -O0 -std=c99 -I../include -Wall `sdl-config --cflags` BUILD_DIR = . LIBS = `sdl-config --libs` -lSDL_image -lSDL_ttf -lSDL_mixer -lSDL_net -FILES = interface.o idManager.o checkFront.o font.o list.o modules.o image.o layer.o director.o\ +FILES = interface.o idManager.o font.o list.o modules.o image.o layer.o director.o\ configFile.o tux.o main.o \ screen.o screen_world.o shot.o myTimer.o panel.o net_multiplayer.o \ buffer.o arena.o arenaFile.o textFile.o audio.o sound.o music.o gun.o \ @@ -33,8 +33,8 @@ modules.o: modules.c ../include/modules.h idManager.o: idManager.c ../include/idManager.h $(CC) $(CFLAGS) -o $(BUILD_DIR)/idManager.o -c idManager.c -checkFront.o: checkFront.c ../include/checkFront.h - $(CC) $(CFLAGS) -o $(BUILD_DIR)/checkFront.o -c checkFront.c +#checkFront.o: checkFront.c ../include/checkFront.h +# $(CC) $(CFLAGS) -o $(BUILD_DIR)/checkFront.o -c checkFront.c font.o: font.c ../include/font.h $(CC) $(CFLAGS) -o $(BUILD_DIR)/font.o -c font.c |