Makefile patch contributed by Greg King:
I added the "MAKEOPTS=" to the top-level "gcc.mak" that he wants, and I changed the tool source tree's top-level make-file so that it supports parallel building. (I added a rule that builds the common library before building anything else.) git-svn-id: svn://svn.cc65.org/cc65/trunk@4497 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
13
make/gcc.mak
13
make/gcc.mak
@@ -14,6 +14,10 @@
|
||||
#MAKEOVERRIDES=
|
||||
# (That trick has been disabled.)
|
||||
|
||||
# To compile with custom make-options, set them here; for example:
|
||||
#MAKEOPTS = -j 2 CFLAGS=-O4 CC=clang
|
||||
MAKEOPTS =
|
||||
|
||||
# The install prefix and directories
|
||||
prefix = /usr/local
|
||||
exec_prefix = $(prefix)
|
||||
@@ -58,9 +62,10 @@ endif
|
||||
all: bins libs docs $(SYS:%=samples tests)
|
||||
|
||||
bins:
|
||||
@$(MAKE) -C src -f make/gcc.mak CA65_INC=\\\"${CA65_INC}/\\\" \
|
||||
CC65_INC=\\\"${CC65_INC}/\\\" LD65_CFG=\\\"${LD65_CFG}/\\\" \
|
||||
LD65_LIB=\\\"${LD65_LIB}/\\\" LD65_OBJ=\\\"${LD65_OBJ}/\\\"
|
||||
@$(MAKE) -C src -f make/gcc.mak $(MAKEOPTS) \
|
||||
CA65_INC=\\\"${CA65_INC}/\\\" CC65_INC=\\\"${CC65_INC}/\\\" \
|
||||
LD65_CFG=\\\"${LD65_CFG}/\\\" LD65_LIB=\\\"${LD65_LIB}/\\\" \
|
||||
LD65_OBJ=\\\"${LD65_OBJ}/\\\"
|
||||
|
||||
libs:
|
||||
@$(MAKE) -C libsrc
|
||||
@@ -69,7 +74,7 @@ libs:
|
||||
# if a host system doesn't have LinuxDoc Tools.
|
||||
docs:
|
||||
@if linuxdoc -B check doc/index >/dev/null 2>&1; \
|
||||
then $(MAKE) -C doc html; \
|
||||
then $(MAKE) -C doc $(MAKEOPTS) html; \
|
||||
else echo '"LinuxDoc Tools" is not installed; skipping HTML documentation.'; \
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user