diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-01-28 23:57:50 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-01-28 23:57:50 +0000 |
| commit | 7728bf91e674cfb2fd2ccb09c5b87df3332686ea (patch) | |
| tree | 67cb50c0cf7594d702cb953a10d7c8e0ca361b2d /makeinclude.in | |
| parent | 3b48b22a718dd471b80a8db099e3817f006e2fe0 (diff) | |
Prepare build configuration variables in Makefiles.
Introduce new Makefile variables BUILD_xxx in makeinclude file, generated
by configure. These variables may be used to select files to be compiled,
dependent on the build configuration.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11079 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makeinclude.in')
| -rw-r--r-- | makeinclude.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/makeinclude.in b/makeinclude.in index 6cff5774c..0dfdb28ef 100644 --- a/makeinclude.in +++ b/makeinclude.in @@ -26,6 +26,13 @@ FL_DSO_VERSION = @FL_DSO_VERSION@ FL_ABI_VERSION = @FL_ABI_VERSION@ FL_VERSION = @FL_VERSION@ +# FLTK configuration options + +BUILD_GDI = @BUILD_GDI@ +BUILD_X11 = @BUILD_X11@ +BUILD_XFT = @BUILD_XFT@ +USEMMFILES = @USEMMFILES@ + # Standard configure variables prefix = @prefix@ @@ -39,7 +46,6 @@ mandir = @mandir@ srcdir = @srcdir@ docdir = $(datadir)/doc/fltk VPATH = @srcdir@ -USEMMFILES = @USEMMFILES@ # programs we use... DOXYDOC = @DOXYDOC@ |
