From fe0fcecd6185cad33f5a53354fb8af7b02c35d13 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Tue, 9 May 2023 16:19:12 +0200 Subject: Fix "Provide --without-fluid configure option " (#725) Add new --disable-fluid configure option. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3