Remove deprecated compiler Makefiles

This commit is contained in:
Martin Kinkelin 2023-12-02 21:15:46 +01:00
parent 732090485d
commit c847abc42a
11 changed files with 35 additions and 669 deletions

View file

@ -2,31 +2,31 @@
all:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
buildkite-test:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
toolchain-info:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
clean:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
test:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
html:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
tags:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
install:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
check-clean-git:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@
style:
$(QUIET)$(MAKE) -C ../compiler/src -f posix.mak $@
$(QUIET)$(MAKE) -C .. -f posix.mak $@

View file

@ -1,89 +0,0 @@
# Proxy Makefile for backwards compatibility after move to /compiler/src
############################### Configuration ################################
OS=windows
BUILD=release
MODEL=32
HOST_DC=dmd
MAKE=make
GEN=..\..\generated
G=$(GEN)\$(OS)\$(BUILD)\$(MODEL)
MAKE_WIN32=$(MAKE) -f win32.mak \
"OS=$(OS)" \
"BUILD=$(BUILD)" \
"MODEL=$(MODEL)" \
"HOST_DMD=$(HOST_DMD)" \
"HOST_DC=$(HOST_DC)" \
"MAKE=$(MAKE)" \
"VERBOSE=$(VERBOSE)" \
"ENABLE_RELEASE=$(ENABLE_RELEASE)" \
"ENABLE_DEBUG=$(ENABLE_DEBUG)" \
"ENABLE_ASSERTS=$(ENABLE_ASSERTS)" \
"ENABLE_LTO=$(ENABLE_LTO)" \
"ENABLE_UNITTEST=$(ENABLE_UNITTEST)" \
"ENABLE_PROFILE=$(ENABLE_PROFILE)" \
"ENABLE_COVERAGE=$(ENABLE_COVERAGE)" \
"DFLAGS=$(DFLAGS)" \
"GEN=$(GEN)" \
"G=$G"
################################## Targets ###################################
defaulttarget :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
release :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
trace :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
clean :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
install :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
install-clean :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
zip :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
dmd :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
debdmd :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
reldmd :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
reldmd-asserts :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
unittest :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
detab :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
tolf :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src

View file

@ -1,89 +0,0 @@
# Proxy Makefile for backwards compatibility after move to /compiler/src
############################### Configuration ################################
OS=windows
BUILD=release
MODEL=64
HOST_DC=dmd
MAKE=make
GEN=..\..\generated
G=$(GEN)\$(OS)\$(BUILD)\$(MODEL)
MAKE_WIN32=$(MAKE) -f win64.mak \
"OS=$(OS)" \
"BUILD=$(BUILD)" \
"MODEL=$(MODEL)" \
"HOST_DMD=$(HOST_DMD)" \
"HOST_DC=$(HOST_DC)" \
"MAKE=$(MAKE)" \
"VERBOSE=$(VERBOSE)" \
"ENABLE_RELEASE=$(ENABLE_RELEASE)" \
"ENABLE_DEBUG=$(ENABLE_DEBUG)" \
"ENABLE_ASSERTS=$(ENABLE_ASSERTS)" \
"ENABLE_LTO=$(ENABLE_LTO)" \
"ENABLE_UNITTEST=$(ENABLE_UNITTEST)" \
"ENABLE_PROFILE=$(ENABLE_PROFILE)" \
"ENABLE_COVERAGE=$(ENABLE_COVERAGE)" \
"DFLAGS=$(DFLAGS)" \
"GEN=$(GEN)" \
"G=$G"
################################## Targets ###################################
defaulttarget :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
release :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
trace :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
clean :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
install :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
install-clean :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
zip :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
dmd :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
debdmd :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
reldmd :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
reldmd-asserts :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
unittest :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
detab :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src
tolf :
cd ..\compiler\src
$(MAKE_WIN32) $@
cd ..\..\src