]>
Commit | Line | Data |
---|---|---|
8e6b0231 HH |
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 | cbstore.cpp \ | |
21 | controlarea.cpp \ | |
22 | controlbar.cpp \ | |
23 | dyntbar.cpp \ | |
24 | dyntbarhnd.cpp \ | |
25 | frmview.cpp \ | |
26 | garbagec.cpp \ | |
27 | gcupdatesmgr.cpp \ | |
28 | hintanimpl.cpp \ | |
29 | newbmpbtn.cpp \ | |
30 | objstore.cpp \ | |
31 | panedrawpl.cpp \ | |
32 | pf_sample.cpp \ | |
33 | rowdragpl.cpp \ | |
34 | rowlayoutpl.cpp \ | |
35 | settingsdlg.cpp \ | |
36 | toolwnd.cpp \ | |
37 | updatesmgr.cpp \ | |
38 | wxinfo.cpp | |
39 | ||
40 | all: $(FLLIB) | |
41 | ||
42 | # Define library objects | |
43 | OBJECTS=\ | |
44 | $(LIB_CPP_SRC:.cpp=.o) | |
45 | ||
46 | $(FLLIB) : $(OBJECTS) | |
47 | ar $(AROPTIONS) $@ $(OBJECTS) | |
48 | $(RANLIB) $@ | |
49 | ||
50 | clean: | |
51 | rm -f $(OBJECTS) $(FLLIB) | |
52 |