]>
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 \ | |
22 | garbagec.h \ | |
23 | hintanimpl.h \ | |
24 | panedrawpl.h \ | |
25 | rowlayoutpl.h \ | |
26 | updatesmgr.h \ | |
27 | antiflickpl.h \ | |
28 | barhintspl.h \ | |
29 | controlbar.h \ | |
30 | dyntbar.h \ | |
31 | frmview.h \ | |
32 | gcupdatesmgr.h \ | |
33 | newbmpbtn.h \ | |
34 | rowdragpl.h \ | |
35 | toolwnd.h | |
36 | ||
37 | OBJECTS = \ | |
38 | antiflickpl.o \ | |
39 | gcupdatesmgr.o \ | |
40 | rowlayoutpl.o \ | |
41 | bardragpl.o \ | |
42 | dyntbar.o \ | |
43 | hintanimpl.o \ | |
44 | toolwnd.o \ | |
45 | barhintspl.o \ | |
46 | dyntbarhnd.o \ | |
47 | newbmpbtn.o \ | |
48 | updatesmgr.o \ | |
49 | cbcustom.o \ | |
50 | frmview.o \ | |
51 | panedrawpl.o \ | |
52 | controlbar.o \ | |
53 | garbagec.o \ | |
54 | rowdragpl.o | |
8e08b761 | 55 | |
f36e7ad8 | 56 | DEPFILES= $(OBJECTS:.o=.d) |
8e08b761 JS |
57 | |
58 | APPEXTRADEFS = -I$(top_srcdir)/contrib/include | |
59 | ||
60 | include $(top_builddir)/src/makelib.env | |
61 | ||
faed65f6 | 62 | -include $(DEPFILES) |
3a922bb4 | 63 |