summaryrefslogtreecommitdiff
path: root/src/screen/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen/Makefile')
-rw-r--r--src/screen/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screen/Makefile b/src/screen/Makefile
index 41c8ae1..32fb758 100644
--- a/src/screen/Makefile
+++ b/src/screen/Makefile
@@ -1,9 +1,12 @@
-all: screen_analyze.o screen_credits.o screen_gameType.o screen_choiceArena.o screen_mainMenu.o screen_setting.o screen_table.o screen_world.o
+all: screen_analyze.o screen_browser.o screen_credits.o screen_gameType.o screen_choiceArena.o screen_mainMenu.o screen_setting.o screen_table.o screen_world.o
screen_analyze.o: screen_analyze.c screen_analyze.h
$(CC) $(CFLAGS) -o screen_analyze.o -c screen_analyze.c
+screen_browser.o: screen_browser.c screen_browser.h
+ $(CC) $(CFLAGS) -o screen_browser.o -c screen_browser.c
+
screen_credits.o: screen_credits.c screen_credits.h
$(CC) $(CFLAGS) -o screen_credits.o -c screen_credits.c
@@ -22,7 +25,6 @@ screen_table.o: screen_table.c screen_table.h
screen_world.o: screen_world.c screen_world.h
$(CC) $(CFLAGS) -o screen_world.o -c screen_world.c
-
clean:
rm -rf *.o