| 1 | # |
| 2 | # File: makefile.unx |
| 3 | # Author: Julian Smart |
| 4 | # Created: 1998 |
| 5 | # Updated: |
| 6 | # Copyright: (c) 1998 |
| 7 | # |
| 8 | # |
| 9 | # Makefile for FL library, Unix |
| 10 | |
| 11 | include ../../../src/make.env |
| 12 | |
| 13 | FLLIB=$(WXDIR)/lib/libogl$(GUISUFFIX).a |
| 14 | |
| 15 | LIB_CPP_SRC=\ |
| 16 | antiflickpl.cpp \ |
| 17 | bardragpl.cpp \ |
| 18 | barhintspl.cpp \ |
| 19 | cbcustom.cpp \ |
| 20 | controlarea.cpp \ |
| 21 | controlbar.cpp \ |
| 22 | dyntbar.cpp \ |
| 23 | dyntbarhnd.cpp \ |
| 24 | garbagec.cpp \ |
| 25 | gcupdatesmgr.cpp \ |
| 26 | hintanimpl.cpp \ |
| 27 | newbmpbtn.cpp \ |
| 28 | panedrawpl.cpp \ |
| 29 | rowdragpl.cpp \ |
| 30 | rowlayoutpl.cpp \ |
| 31 | toolwnd.cpp \ |
| 32 | updatesmgr.cpp \ |
| 33 | |
| 34 | all: $(FLLIB) |
| 35 | |
| 36 | # Define library objects |
| 37 | OBJECTS=\ |
| 38 | $(LIB_CPP_SRC:.cpp=.o) |
| 39 | |
| 40 | $(FLLIB) : $(OBJECTS) |
| 41 | ar $(AROPTIONS) $@ $(OBJECTS) |
| 42 | $(RANLIB) $@ |
| 43 | |
| 44 | clean: |
| 45 | rm -f $(OBJECTS) $(FLLIB) |
| 46 | |