diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-05-09 16:19:12 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-05-09 16:19:12 +0200 |
| commit | fe0fcecd6185cad33f5a53354fb8af7b02c35d13 (patch) | |
| tree | b05e1f2f2e703677cb4a2ee14588fa4d9cc1c631 /Makefile | |
| parent | ac7b55d8bbd249e400c7b3282e50cd88ae8f71b6 (diff) | |
Fix "Provide --without-fluid configure option " (#725)
Add new --disable-fluid configure option.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -16,13 +16,18 @@ include makeinclude -DIRS = $(IMAGEDIRS) $(LIBDECORDIR) src $(CAIRODIR) fluid fltk-options test documentation +DIRS = $(IMAGEDIRS) $(LIBDECORDIR) src $(CAIRODIR) $(FLUIDDIR) fltk-options test \ + documentation all: makeinclude fltk-config for dir in $(DIRS); do\ echo "=== making $$dir ===";\ (cd $$dir; $(MAKE) $(MFLAGS)) || exit 1;\ done + for dir in $(FLUIDDIR); do\ + echo "=== making fluidtest ===";\ + (cd test; $(MAKE) $(MFLAGS) allfluid);\ + done install: makeinclude -mkdir -p $(DESTDIR)$(bindir) |
