From 95165884b67f30d794e963be81d0a6a2adba2d4a Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 10 Jun 2020 16:24:39 +0200 Subject: Support cross-compilation with autotools We use the host system's `fluid` when cross-compiling. This must be executable as `fluid`, i.e. it must be in the PATH or otherwise defined, for instance as an alias. --- test/Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index 40b5344af..959d28709 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,19 +1,17 @@ # -# "$Id$" -# # Test/example program makefile for the Fast Light Tool Kit (FLTK). # -# Copyright 1998-2019 by Bill Spitzak and others. +# Copyright 1998-2020 by Bill Spitzak and others. # # This library is free software. Distribution and use rights are outlined in # the file "COPYING" which should have been included with this file. If this # file is missing or damaged, see the license at: # -# http://www.fltk.org/COPYING.php +# https://www.fltk.org/COPYING.php # # Please report all bugs and problems on the following page: # -# http://www.fltk.org/str.php +# https://www.fltk.org/str.php # include ../makeinclude @@ -302,7 +300,7 @@ uninstall-osx: # FLUID file rules .fl.cxx .fl.h: ../fluid/fluid$(EXEEXT) echo Generating $@ and header from $<... - ../fluid/fluid$(EXEEXT) -c $< + $(FLUID_BUILD) -c $< # All demos depend on the FLTK library... $(ALL): $(LIBNAME) -- cgit v1.2.3