dmd/win32.mak
Iain Buclaw 09d04945bd Fix build script paths to work with new merged repository structure
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>
2022-07-09 23:49:27 +02:00

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 ..\..