libsegl/glmenu/Makefile

14 lines
237 B
Makefile
Raw Normal View History

2008-03-31 00:14:35 +02:00
CC = g++
OBJOPT = -c `sdl-config --cflags` -Wall
OBJECTS = menumanager.o menumenu.o menuitem.o menuitems.o
glguilib: $(OBJECTS)
# rm glgui.a -f
ar crus glmenu.a $(OBJECTS)
%.o: %.cpp %.h
2008-03-31 00:14:35 +02:00
$(CC) $(OBJOPT) $<
clean:
rm -f $(OBJECTS)