mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
292 B
Makefile
16 lines
292 B
Makefile
MAKE=make
|
|
|
|
auto-tester-build:
|
|
cd src
|
|
$(MAKE) -f win32.mak auto-tester-build
|
|
cd ..
|
|
|
|
auto-tester-test:
|
|
cd test
|
|
$(MAKE)
|
|
cd ..
|
|
cd samples
|
|
gmake -f win32.mak DMD=..\src\dmd.exe MODEL=$(MODEL) "LIB=..\..\phobos;$(LIB)" \
|
|
"DFLAGS=-I..\..\druntime\import -I..\..\phobos -m$(MODEL)"
|
|
cd ..
|
|
|