use $(MAKE) instead of literal `make'
This commit is contained in:
parent
7816052481
commit
61f4fffdac
|
|
@ -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 ,
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue