Browse Source

use $(MAKE) instead of literal `make'

pre-master-46
rlar 16 years ago
parent
commit
61f4fffdac
  1. 4
      ChangeLog
  2. 4
      src/xspice/icm/Makefile

4
ChangeLog

@ -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 ,

4
src/xspice/icm/Makefile

@ -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…
Cancel
Save