[minor] Makefile: move ARCH_SPECIFIC back to the main Makefile

(This is a small, independent readability fix.)

ARCH_SPECIFIC was moved into Makefile.compilerlibs by mistake; it is
not used in Makefile.compilerlibs (in particular the
ARCH_SPECIFIC_ASMCOMP_* variables do not depend on it), and it is used
in the main Makefile.
master
Gabriel Scherer 2020-05-05 14:21:48 +02:00
parent 11c9d92732
commit 67f6128ebd
2 changed files with 4 additions and 4 deletions

View File

@ -951,6 +951,10 @@ partialclean::
## Test compilation of backend-specific parts
ARCH_SPECIFIC =\
asmcomp/arch.ml asmcomp/proc.ml asmcomp/CSE.ml asmcomp/selection.ml \
asmcomp/scheduling.ml asmcomp/reload.ml
partialclean::
rm -f $(ARCH_SPECIFIC)

View File

@ -102,10 +102,6 @@ BYTECOMP=bytecomp/instruct.cmo bytecomp/bytegen.cmo \
driver/errors.cmo driver/compile.cmo
BYTECOMP_CMI=
ARCH_SPECIFIC =\
asmcomp/arch.ml asmcomp/proc.ml asmcomp/CSE.ml asmcomp/selection.ml \
asmcomp/scheduling.ml asmcomp/reload.ml
INTEL_ASM=\
asmcomp/x86_proc.cmo \
asmcomp/x86_dsl.cmo \