# # File: makefile.unx # Author: Julian Smart # Created: 1998 # Updated: # Copyright: (c) 1998 # # # Makefile for FL library, Unix include ../../../src/make.env FLLIB=$(WXDIR)/lib/libogl$(GUISUFFIX).a LIB_CPP_SRC=\ antiflickpl.cpp \ bardragpl.cpp \ barhintspl.cpp \ cbcustom.cpp \ controlarea.cpp \ controlbar.cpp \ dyntbar.cpp \ dyntbarhnd.cpp \ garbagec.cpp \ gcupdatesmgr.cpp \ hintanimpl.cpp \ newbmpbtn.cpp \ panedrawpl.cpp \ rowdragpl.cpp \ rowlayoutpl.cpp \ toolwnd.cpp \ updatesmgr.cpp \ all: $(FLLIB) # Define library objects OBJECTS=\ $(LIB_CPP_SRC:.cpp=.o) $(FLLIB) : $(OBJECTS) ar $(AROPTIONS) $@ $(OBJECTS) $(RANLIB) $@ clean: rm -f $(OBJECTS) $(FLLIB)