mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

Co-Authored-By: Geod24 <pro.mathias.lang@gmail.com> Co-Authored-By: Martin Kinkelin <noone@nowhere.com> Co-Authored-By: Vladimir Panteleev <git@cy.md>
26 lines
511 B
Makefile
26 lines
511 B
Makefile
MAKE=make
|
|
|
|
defaulttarget:
|
|
cd compiler\src
|
|
$(MAKE) -f win32.mak
|
|
cd ..\..
|
|
|
|
auto-tester-build:
|
|
cd compiler\src
|
|
$(MAKE) -f win32.mak auto-tester-build
|
|
cd ..\..
|
|
cd druntime
|
|
$(MAKE) -f win32.mak auto-tester-build
|
|
cd ..
|
|
|
|
auto-tester-test:
|
|
cd compiler\test
|
|
$(MAKE)
|
|
cd ..\..
|
|
cd druntime
|
|
$(MAKE) -f win32.mak auto-tester-test
|
|
cd ..
|
|
cd compiler\samples
|
|
gmake -f win32.mak DMD=..\src\dmd.exe MODEL=$(MODEL) "LIB=..\..\phobos;$(LIB)" \
|
|
"DFLAGS=-I..\..\druntime\import -I..\..\phobos -m$(MODEL)"
|
|
cd ..\..
|