frodo-wii/Makefile

14 lines
182 B
Makefile
Raw Normal View History

2009-11-23 18:28:34 +00:00
OBJS=menu.oo main.oo
all: menu
2009-11-23 06:14:38 +00:00
%.oo: %.cpp
2009-11-23 18:28:34 +00:00
g++ -c `sdl-config --cflags` -o $@ $<
2009-11-23 06:14:38 +00:00
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:
rm -f *.oo