Delete variables for the deleted IL and gcc backends.

scripts/Mmake.vars.in:
tests/par_conj/Mmakefile:
tests/stm/Mmakefile:
tools/bootcheck:
	As above.
This commit is contained in:
Peter Wang
2015-09-29 17:45:09 +10:00
parent ed3ca2ffe0
commit 9bb1c8caa9
4 changed files with 6 additions and 35 deletions

View File

@@ -529,8 +529,6 @@ useds_subdir=$(SUBDIR)useds/
mihs_subdir=$(SUBDIR)mihs/
cs_subdir=$(SUBDIR)cs/
dlls_subdir=$(SUBDIR)dlls/
ss_subdir=$(SUBDIR)ss/
pic_ss_subdir=$(SUBDIR)pic_ss/
os_subdir=$(SUBDIR)os/
javas_subdir=$(SUBDIR)javas/
dirs_subdir=$(SUBDIR)dirs/
@@ -565,8 +563,6 @@ useds_subdir=
mihs_subdir=
cs_subdir=
dlls_subdir=
ss_subdir=
pic_ss_subdir=
os_subdir=
javas_subdir=
dirs_subdir=

View File

@@ -104,24 +104,13 @@ endif
# `mmc --make' doesn't expect subdirectories to appear in targets.
ifeq ($(MMAKE_USE_MMC_MAKE),yes)
OS_SUBDIR=
ILS_SUBDIR=
DLLS_SUBDIR=
else
OS_SUBDIR=$(os_subdir)
ILS_SUBDIR=$(ils_subdir)
DLLS_SUBDIR=$(dlls_subdir)
endif
ifeq ($(findstring il,$(GRADE)),il)
TARGET_OBJ_EXT=dll
TARGET_OBJ_SUBDIR=$(DLLS_SUBDIR)
else
TARGET_OBJ_EXT=$(O)
TARGET_OBJ_SUBDIR=$(OS_SUBDIR)
endif
OBJS = $(OBJ_PROGS:%=$(TARGET_OBJ_SUBDIR)%.$(TARGET_OBJ_EXT)) \
$(IL_PROGS:%=$(ILS_SUBDIR)%.il)
TARGET_OBJ_EXT=$(O)
TARGET_OBJ_SUBDIR=$(OS_SUBDIR)
OBJS = $(OBJ_PROGS:%=$(TARGET_OBJ_SUBDIR)%.$(TARGET_OBJ_EXT))
#-----------------------------------------------------------------------------#

View File

@@ -62,23 +62,13 @@ endif
# `mmc --make' doesn't expect subdirectories to appear in targets.
ifeq ($(MMAKE_USE_MMC_MAKE),yes)
OS_SUBDIR =
ILS_SUBDIR =
DLLS_SUBDIR =
else
OS_SUBDIR = $(os_subdir)
ILS_SUBDIR = $(ils_subdir)
DLLS_SUBDIR = $(dlls_subdir)
endif
ifeq ($(findstring il,$(GRADE)),il)
TARGET_OBJ_EXT = dll
TARGET_OBJ_SUBDIR = $(DLLS_SUBDIR)
else
TARGET_OBJ_EXT = $(O)
TARGET_OBJ_SUBDIR = $(OS_SUBDIR)
endif
OBJS = $(OBJ_PROGS:%=$(TARGET_OBJ_SUBDIR)%.$(TARGET_OBJ_EXT)) \
$(IL_PROGS:%=$(ILS_SUBDIR)%.il)
TARGET_OBJ_EXT = $(O)
TARGET_OBJ_SUBDIR = $(OS_SUBDIR)
OBJS = $(OBJ_PROGS:%=$(TARGET_OBJ_SUBDIR)%.$(TARGET_OBJ_EXT))
#-----------------------------------------------------------------------------#

View File

@@ -434,13 +434,9 @@ fi
case $use_subdirs in
yes)
cs_subdir=Mercury/cs/
ss_subdir=Mercury/ss/
ils_subdir=Mercury/ils/
;;
no)
cs_subdir=
ss_subdir=
ils_subdir=
;;
esac