]>
Commit | Line | Data |
---|---|---|
3a922bb4 | 1 | # $Id$ |
8e08b761 JS |
2 | |
3 | top_srcdir = @top_srcdir@/.. | |
4 | top_builddir = ../../.. | |
5 | libsrc_dir = contrib/src/fl | |
6 | ||
2b5f62a0 VZ |
7 | TARGET_LIBNAME=lib@WX_LIBRARY_BASENAME@_fl-@WX_RELEASE@ |
8 | ||
9 | LIBVERSION_CURRENT=@WX_CURRENT@ | |
10 | LIBVERSION_REVISION=@WX_REVISION@ | |
11 | LIBVERSION_AGE=@WX_AGE@ | |
8e08b761 | 12 | |
8e08b761 | 13 | |
3a922bb4 RL |
14 | HEADER_PATH=$(top_srcdir)/contrib/include/wx |
15 | HEADER_SUBDIR=fl | |
16 | ||
17 | HEADERS = \ | |
18 | bardragpl.h \ | |
19 | cbcustom.h \ | |
20 | dynbarhnd.h \ | |
21 | dyntbarhnd.h \ | |
0bc83649 | 22 | fldefs.h \ |
3a922bb4 RL |
23 | garbagec.h \ |
24 | hintanimpl.h \ | |
25 | panedrawpl.h \ | |
26 | rowlayoutpl.h \ | |
27 | updatesmgr.h \ | |
28 | antiflickpl.h \ | |
29 | barhintspl.h \ | |
30 | controlbar.h \ | |
31 | dyntbar.h \ | |
32 | frmview.h \ | |
33 | gcupdatesmgr.h \ | |
34 | newbmpbtn.h \ | |
35 | rowdragpl.h \ | |
36 | toolwnd.h | |
37 | ||
38 | OBJECTS = \ | |
39 | antiflickpl.o \ | |
40 | gcupdatesmgr.o \ | |
41 | rowlayoutpl.o \ | |
42 | bardragpl.o \ | |
43 | dyntbar.o \ | |
44 | hintanimpl.o \ | |
45 | toolwnd.o \ | |
46 | barhintspl.o \ | |
47 | dyntbarhnd.o \ | |
48 | newbmpbtn.o \ | |
49 | updatesmgr.o \ | |
50 | cbcustom.o \ | |
51 | frmview.o \ | |
52 | panedrawpl.o \ | |
53 | controlbar.o \ | |
54 | garbagec.o \ | |
55 | rowdragpl.o | |
8e08b761 | 56 | |
f36e7ad8 | 57 | DEPFILES= $(OBJECTS:.o=.d) |
8e08b761 JS |
58 | |
59 | APPEXTRADEFS = -I$(top_srcdir)/contrib/include | |
60 | ||
61 | include $(top_builddir)/src/makelib.env | |
62 | ||
faed65f6 | 63 | -include $(DEPFILES) |
3a922bb4 | 64 |