use $(MAKE) instead of literal `make'

This commit is contained in:
rlar 2010-09-30 20:24:07 +00:00
parent 7816052481
commit 61f4fffdac
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-09-30 Robert Larice
* src/xspice/icm/Makefile :
use $(MAKE) instead of `make'
2010-09-30 Robert Larice
* src/xspice/cmpp/Makefile.am ,
* src/xspice/cmpp/ifs_lex.l ,

View File

@ -12,9 +12,9 @@ DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
-include .deps/cm.P
-include .deps/dlmain.P
UPMAKE = make -f $(TOPDIR)../Makefile TOPDIR=$(TOPDIR)../
UPMAKE := $(MAKE) -f $(TOPDIR)../Makefile TOPDIR=$(TOPDIR)../
MAKE = make -f $(TOPDIR)Makefile TOPDIR=$(TOPDIR)
MAKE := $(MAKE) -f $(TOPDIR)Makefile TOPDIR=$(TOPDIR)
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)