summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-05-09 16:19:12 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-05-09 16:19:12 +0200
commitfe0fcecd6185cad33f5a53354fb8af7b02c35d13 (patch)
treeb05e1f2f2e703677cb4a2ee14588fa4d9cc1c631 /Makefile
parentac7b55d8bbd249e400c7b3282e50cd88ae8f71b6 (diff)
Fix "Provide --without-fluid configure option " (#725)
Add new --disable-fluid configure option.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b31cc4df8..b3c114c88 100644
--- a/Makefile
+++ b/Makefile
@@ -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)