From: bernhardheld Date: Fri, 26 Mar 2004 12:00:26 +0000 (+0000) Subject: device/lib/build/small/Makefile: fixed parallel execution by replacing `make` by... X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=53982855b8aac31c357ce72d12985c31d01dc812;p=fw%2Fsdcc 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 --- 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