From 69d9880ed19433f9059474b2b2bc7a1a2c7ec551 Mon Sep 17 00:00:00 2001 From: Fede Camara Halac Date: Mon, 12 Jun 2023 18:31:38 +0200 Subject: [PATCH] do not output date in makefile --- INSTALL.txt | 4 ++-- Makefile | 2 +- config.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.txt b/INSTALL.txt index e97d5b3..3f515a8 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -14,7 +14,7 @@ $ git submodule update on Unix ------------------------------------------------------------------------------- -$ sh config.sh +$ bash config.sh $ make $ make install @@ -27,7 +27,7 @@ I basically used the same terminal to compile Pure Data and it works. So, check Once you are on the shell emulator, run: -$ sh config.sh +$ bash config.sh $ make You must indicate the path to pd's directory, as well as the directory to include. diff --git a/Makefile b/Makefile index e806ffa..e56ab70 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Makefile for fd_lib version 0.3 - Thu 11 May 2023 07:32:07 PM CEST +# Makefile for fd_lib version 0.3 lib.name=fd_lib lib.setup.sources = src/$(lib.name).c class.sources = src/cantor.c src/clifford.c src/colormap.c src/combi.c src/connect.c src/counter.c src/crand.c src/cuadratic.c src/delit.c src/factor.c src/fdm.c src/frand.c src/glistinfo.c src/halton.c src/henon.c src/irlog.c src/irpow.c src/irsqrt.c src/iterate.c src/lor~.c src/lorenz.c src/lornorm.c src/lorsig~.c src/mainpath.c src/mandelbrot.c src/minimax.c src/mtwister.c src/parabola.c src/pmtwister.c src/prandom.c src/randy.c src/reflect.c src/root.c src/scroll.c src/siginfo.c src/sradio.c src/tracks.c diff --git a/config.sh b/config.sh index 8d050ad..65fa62a 100755 --- a/config.sh +++ b/config.sh @@ -71,7 +71,7 @@ fi # Make Makefile # # ----------------------------------------------------------------------------- -echo "# Makefile for $LIBNAME version $FDLIBVERSION - `date`" > Makefile +echo "# Makefile for $LIBNAME version $FDLIBVERSION" > Makefile echo "lib.name=$LIBNAME" >> Makefile # specify the location of main header file echo "lib.setup.sources = src/\$(lib.name).c" >> Makefile