Move dmd files into compiler/

This commit is contained in:
Iain Buclaw 2022-07-09 18:53:07 +02:00
parent 20bd0cacbd
commit 6374bb87b7
4579 changed files with 4 additions and 4 deletions

49
compiler/samples/all.sh Normal file
View file

@ -0,0 +1,49 @@
# Little shell script to compile, link, and run all the samples.
# Use dmd\windows\bin\shell.exe to execute.
DMD=..\..\windows\bin\dmd
DFLAGS=
CLEAN=clean.bat
#~ $(DMD) chello $(DFLAGS) # which compilation flags?
#~ chello
$(DMD) d2html $(DFLAGS)
d2html d2html.d
$(DMD) dhry $(DFLAGS)
dhry
$(DMD) hello $(DFLAGS)
hello
#~ $(DMD) htmlget $(DFLAGS) # broken
#~ $(DMD) listener $(DFLAGS) # broken
$(DMD) pi $(DFLAGS)
pi 1000
$(DMD) sieve $(DFLAGS)
sieve
$(DMD) wc $(DFLAGS)
wc wc.d
$(DMD) wc2 $(DFLAGS)
wc2 wc2.d
$(DMD) winsamp gdi32.lib winsamp.def
winsamp
# COM client/server example
$(DMD) dserver.d chello.d dserver.def advapi32.lib ole32.lib user32.lib
# dclient will fail unless run with administrator rights
$(DMD) dclient $(DFLAGS) ole32.lib uuid.lib
dclient
$(CLEAN)