From 53982855b8aac31c357ce72d12985c31d01dc812 Mon Sep 17 00:00:00 2001 From: bernhardheld Date: Fri, 26 Mar 2004 12:00:26 +0000 Subject: [PATCH] device/lib/build/small/Makefile: fixed parallel execution by replacing `make` by `$(MAKE)` git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3278 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 5 +++++ device/lib/small/Makefile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 75bf1f8a..cac9f928 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-03-26 Bernhard Held + + * device/lib/small/Makefile: fixed parallel execution by + replacing `make` by `$(MAKE)` + 2004-03-23 Bernhard Held * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101 diff --git a/device/lib/small/Makefile b/device/lib/small/Makefile index c132ed9c..9236d4de 100644 --- a/device/lib/small/Makefile +++ b/device/lib/small/Makefile @@ -1,6 +1,6 @@ # Dummy Makefile to get around CVS all: - make -C ../mcs51 all + $(MAKE) -C ../mcs51 all cp ../mcs51/*.rel ../mcs51/*.lib . touch dummy.lib touch dummy.rel -- 2.30.2