You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
213 B

# COMPILER = g++
OBJECTS = button.o object.o textlabel.o window.o
glguilib: $(OBJECTS)
rm glgui.a -f
ar rfc glgui.a $(OBJECTS)
%.o: %.cpp %.h
$(COMPILER) -c `sdl-config --cflags` $<
clean:
rm -f $(OBJECTS)