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