]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/src/makefile.unx
fix for the crash when many listctrl items change state
[wxWidgets.git] / utils / framelayout / src / makefile.unx
CommitLineData
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
11include ../../../src/make.env
12
13FLLIB=$(WXDIR)/lib/libogl$(GUISUFFIX).a
14
15LIB_CPP_SRC=\
16antiflickpl.cpp \
17bardragpl.cpp \
18barhintspl.cpp \
19cbcustom.cpp \
8e6b0231
HH
20controlarea.cpp \
21controlbar.cpp \
22dyntbar.cpp \
23dyntbarhnd.cpp \
8e6b0231
HH
24garbagec.cpp \
25gcupdatesmgr.cpp \
26hintanimpl.cpp \
27newbmpbtn.cpp \
8e6b0231 28panedrawpl.cpp \
8e6b0231
HH
29rowdragpl.cpp \
30rowlayoutpl.cpp \
8e6b0231
HH
31toolwnd.cpp \
32updatesmgr.cpp \
8e6b0231
HH
33
34all: $(FLLIB)
35
36# Define library objects
37OBJECTS=\
38 $(LIB_CPP_SRC:.cpp=.o)
39
40$(FLLIB) : $(OBJECTS)
41 ar $(AROPTIONS) $@ $(OBJECTS)
42 $(RANLIB) $@
43
44clean:
45 rm -f $(OBJECTS) $(FLLIB)
46