]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/src/Makefile.in
Compile fix for GTK 1.0
[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 \
bd9396d5
HH
31controlarea.cpp \
32controlbar.cpp \
33dyntbar.cpp \
34dyntbarhnd.cpp \
bd9396d5
HH
35garbagec.cpp \
36gcupdatesmgr.cpp \
37hintanimpl.cpp \
38newbmpbtn.cpp \
bd9396d5 39panedrawpl.cpp \
bd9396d5
HH
40rowdragpl.cpp \
41rowlayoutpl.cpp \
bd9396d5 42toolwnd.cpp \
af11388a 43updatesmgr.cpp
bd9396d5
HH
44
45#define library objects
46LIB_OBJ= \
47\
48 $(LIB_CPP_SRC:.cpp=.o)
49
50all::
51
52clean::
53
54#additional things needed for compile
55ADD_COMPILE=
56
57# include the definitions now
58include ../../../../template.mak
59
60install::
af11388a 61 @echo "Installing library files and headers for libwx_fl_gtk.."
bd9396d5
HH
62 @echo " Creating directory.."
63 @$(WXBASEDIR)/mkinstalldirs /usr/local/include/wx_fl
64 @echo " Copying headers from framelayout/src"
65 @cd $(WXBASEDIR)/utils/framelayout/src ; \
66 for f in *.h ; do \
67 rm -f /usr/local/include/wx_fl/$$f ; \
68 $(INSTALL_DATA) $$f /usr/local/include/wx_fl/$$f ; \
69 done
70 @echo " Copying static library files to /usr/local/lib"
71 @cd $(WXBASEDIR)/lib/$(OS) ; \
72 for f in libwx_fl_gtk.a ; do \
73 rm -f /usr/local/lib/$$f ; \
74 $(INSTALL_DATA) $$f /usr/local/lib/$$f ; \
75 done
76 @echo " Copying shared libraries to /usr/local/lib"
77 @cd $(WXBASEDIR)/lib/$(OS) ; \
78 for f in libwx_fl_gtk.so* ; do \
79 rm -f /usr/local/lib/$$f ; \
80 $(INSTALL_PROGRAM) $$f /usr/local/lib/$$f ; \
81 done
82