]>
Commit | Line | Data |
---|---|---|
8e08b761 JS |
1 | # |
2 | # File: Makefile | |
3 | # Author: Hans Van Leemputten | |
4 | # Created: 2001 | |
5 | # Updated: | |
6 | # Copyright: (c) wxWorkshop team, 2001 | |
7 | # | |
8 | # Makefile for wxWindows FrameLayout library (Linux/wxGTK). | |
9 | ||
10 | top_srcdir = @top_srcdir@/.. | |
11 | top_builddir = ../../.. | |
12 | libsrc_dir = contrib/src/fl | |
13 | ||
14 | TARGET_LIBNAME = libfl | |
15 | OBJ_EXT = o | |
16 | ||
17 | # Version Info. | |
18 | LIBVERSION_CURRENT=1 | |
19 | LIBVERSION_REVISION=0 | |
20 | LIBVERSION_AGE=0 | |
21 | ||
22 | include ./files.lst | |
23 | ||
24 | OBJECTS = $(FL_OBJECTS) | |
25 | ||
26 | APPEXTRADEFS = -I$(top_srcdir)/contrib/include | |
27 | ||
28 | include $(top_builddir)/src/makelib.env | |
29 |