Skip to content

Commit

Permalink
do not output date in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 12, 2023
1 parent 54fb94e commit 69d9880
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $ git submodule update
on Unix
-------------------------------------------------------------------------------

$ sh config.sh
$ bash config.sh
$ make
$ make install

Expand All @@ -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 <bin> directory, as well as the <src> directory to include.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69d9880

Please sign in to comment.