2009-12-19 10:00:29 +01:00
|
|
|
OBJS=menu.oo main.oo utils.oo gui.oo dialogue_box.oo menu_messages.oo \
|
|
|
|
timer.oo game_info.oo
|
2009-11-23 19:28:34 +01:00
|
|
|
|
|
|
|
all: menu
|
2009-11-23 07:14:38 +01:00
|
|
|
|
|
|
|
%.oo: %.cpp
|
2009-11-23 19:52:30 +01:00
|
|
|
g++ -Wall -g -c `sdl-config --cflags` -o $@ $<
|
2009-11-23 07:14:38 +01:00
|
|
|
|
2009-12-19 16:46:15 +01:00
|
|
|
menu.oo: menu.cpp menu.hh utils.hh font.hh widget.hh Makefile
|
2009-11-23 19:52:30 +01:00
|
|
|
|
2009-12-19 10:00:29 +01:00
|
|
|
gui.oo: gui.cpp gui.hh Makefile font.hh menu.hh sdl_ttf_font.hh \
|
2009-12-15 19:37:34 +01:00
|
|
|
dialogue_box.hh help_box.hh main_menu.cpp disc_menu.cpp \
|
2009-12-19 14:20:15 +01:00
|
|
|
file_browser.hh timer.hh game_info.hh
|
2009-11-28 09:22:19 +01:00
|
|
|
|
2009-12-19 10:00:29 +01:00
|
|
|
game_info.oo: game_info.hh game_info.cpp
|
|
|
|
|
2009-11-23 19:52:30 +01:00
|
|
|
utils.oo: utils.cpp utils.hh Makefile
|
|
|
|
|
2009-12-16 18:47:03 +01:00
|
|
|
timer.oo: timer.cpp timer.hh utils.hh Makefile
|
|
|
|
|
2009-11-29 10:29:26 +01:00
|
|
|
dialogue_box.oo: dialogue_box.cpp dialogue_box.hh menu.hh Makefile
|
|
|
|
|
2009-11-26 19:53:04 +01:00
|
|
|
main.oo: menu.hh utils.hh sdl_ttf_font.hh Makefile
|
2009-01-13 19:46:42 +01:00
|
|
|
|
2009-11-19 18:22:32 +01:00
|
|
|
menu: $(OBJS)
|
2009-11-23 19:28:34 +01:00
|
|
|
g++ `sdl-config --libs` -lSDL -lSDL_image -lSDL_ttf -o $@ $+
|
|
|
|
|
|
|
|
clean:
|
2009-11-26 19:53:04 +01:00
|
|
|
rm -f *.oo menu *~
|