mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
21 lines
345 B
Makefile
21 lines
345 B
Makefile
MAKE=make
|
|
|
|
defaulttarget:
|
|
cd src
|
|
$(MAKE) -f win32.mak
|
|
cd ..
|
|
|
|
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 ..
|
|
|