]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/src/Makefile.in
wxCommandEvent::SetString() change - now uses wxString
[wxWidgets.git] / utils / framelayout / src / Makefile.in
CommitLineData
bd9396d5
HH
1#
2# wxFrameLayout source makefile for Unix
3#
4# Copyright 1999, Harm van der Heijden
5#
6
7# wxWindows base directory
8WXBASEDIR=@WXBASEDIR@
9
10# set the OS type for compilation
11OS=@OS@
12
13# compile a library only
14RULE=gslib
15
16# needed for unactivated
17NONE=
18
19# define library name
20LIB_TARGET=wx_fl_gtk
21LIB_MAJOR=0
22LIB_MINOR=1
23
24# define library sources
25
26LIB_CPP_SRC= \
27antiflickpl.cpp \
28bardragpl.cpp \
29barhintspl.cpp \
30cbcustom.cpp \
31cbstore.cpp \
32controlarea.cpp \
33controlbar.cpp \
34dyntbar.cpp \
35dyntbarhnd.cpp \
36frmview.cpp \
37garbagec.cpp \
38gcupdatesmgr.cpp \
39hintanimpl.cpp \
40newbmpbtn.cpp \
41objstore.cpp \
42panedrawpl.cpp \
43pf_sample.cpp \
44rowdragpl.cpp \
45rowlayoutpl.cpp \
46settingsdlg.cpp \
47toolwnd.cpp \
48updatesmgr.cpp \
49wxinfo.cpp
50
51#define library objects
52LIB_OBJ= \
53\
54 $(LIB_CPP_SRC:.cpp=.o)
55
56all::
57
58clean::
59
60#additional things needed for compile
61ADD_COMPILE=
62
63# include the definitions now
64include ../../../../template.mak
65
66install::
67 @echo "Installing library files and headers for libwx_gl_gtk.."
68 @echo " Creating directory.."
69 @$(WXBASEDIR)/mkinstalldirs /usr/local/include/wx_fl
70 @echo " Copying headers from framelayout/src"
71 @cd $(WXBASEDIR)/utils/framelayout/src ; \
72 for f in *.h ; do \
73 rm -f /usr/local/include/wx_fl/$$f ; \
74 $(INSTALL_DATA) $$f /usr/local/include/wx_fl/$$f ; \
75 done
76 @echo " Copying static library files to /usr/local/lib"
77 @cd $(WXBASEDIR)/lib/$(OS) ; \
78 for f in libwx_fl_gtk.a ; do \
79 rm -f /usr/local/lib/$$f ; \
80 $(INSTALL_DATA) $$f /usr/local/lib/$$f ; \
81 done
82 @echo " Copying shared libraries to /usr/local/lib"
83 @cd $(WXBASEDIR)/lib/$(OS) ; \
84 for f in libwx_fl_gtk.so* ; do \
85 rm -f /usr/local/lib/$$f ; \
86 $(INSTALL_PROGRAM) $$f /usr/local/lib/$$f ; \
87 done
88