]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/src/makefile.unx
1 - Moved settingsdlg.[h,cpp] and wxinfo.[h,cpp] to demo where they belong
[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 \
20cbstore.cpp \
21controlarea.cpp \
22controlbar.cpp \
23dyntbar.cpp \
24dyntbarhnd.cpp \
25frmview.cpp \
26garbagec.cpp \
27gcupdatesmgr.cpp \
28hintanimpl.cpp \
29newbmpbtn.cpp \
30objstore.cpp \
31panedrawpl.cpp \
32pf_sample.cpp \
33rowdragpl.cpp \
34rowlayoutpl.cpp \
35settingsdlg.cpp \
36toolwnd.cpp \
37updatesmgr.cpp \
38wxinfo.cpp
39
40all: $(FLLIB)
41
42# Define library objects
43OBJECTS=\
44 $(LIB_CPP_SRC:.cpp=.o)
45
46$(FLLIB) : $(OBJECTS)
47 ar $(AROPTIONS) $@ $(OBJECTS)
48 $(RANLIB) $@
49
50clean:
51 rm -f $(OBJECTS) $(FLLIB)
52