mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
Remove deprecated compiler Makefiles
This commit is contained in:
parent
732090485d
commit
c847abc42a
11 changed files with 35 additions and 669 deletions
|
@ -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 $@
|
||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue