]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/src/Makefile.in
1 - Moved settingsdlg.[h,cpp] and wxinfo.[h,cpp] to demo where they belong
[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 \
bd9396d5
HH
43rowdragpl.cpp \
44rowlayoutpl.cpp \
bd9396d5 45toolwnd.cpp \
af11388a 46updatesmgr.cpp
bd9396d5
HH
47
48#define library objects
49LIB_OBJ= \
50\
51 $(LIB_CPP_SRC:.cpp=.o)
52
53all::
54
55clean::
56
57#additional things needed for compile
58ADD_COMPILE=
59
60# include the definitions now
61include ../../../../template.mak
62
63install::
af11388a 64 @echo "Installing library files and headers for libwx_fl_gtk.."
bd9396d5
HH
65 @echo " Creating directory.."
66 @$(WXBASEDIR)/mkinstalldirs /usr/local/include/wx_fl
67 @echo " Copying headers from framelayout/src"
68 @cd $(WXBASEDIR)/utils/framelayout/src ; \
69 for f in *.h ; do \
70 rm -f /usr/local/include/wx_fl/$$f ; \
71 $(INSTALL_DATA) $$f /usr/local/include/wx_fl/$$f ; \
72 done
73 @echo " Copying static library files to /usr/local/lib"
74 @cd $(WXBASEDIR)/lib/$(OS) ; \
75 for f in libwx_fl_gtk.a ; do \
76 rm -f /usr/local/lib/$$f ; \
77 $(INSTALL_DATA) $$f /usr/local/lib/$$f ; \
78 done
79 @echo " Copying shared libraries to /usr/local/lib"
80 @cd $(WXBASEDIR)/lib/$(OS) ; \
81 for f in libwx_fl_gtk.so* ; do \
82 rm -f /usr/local/lib/$$f ; \
83 $(INSTALL_PROGRAM) $$f /usr/local/lib/$$f ; \
84 done
85