mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-26 05:24:21 +01:00
9 lines
140 B
Makefile
9 lines
140 B
Makefile
OBJS=menu.oo
|
|
|
|
%.oo: %.cpp
|
|
g++ `sdl-config --cflags` -o $@ $<
|
|
|
|
|
|
menu: $(OBJS)
|
|
g++ `sdl-config --libs` -lsdl -lsdl_image -lsdl_ttf -o $@ $+
|