1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
thisdir = class
include ../build/rules.make
lib/bootstrap lib/vbnc:
$(MKINSTALLDIRS) $@
DISTFILES = \
mono.snk \
lib/bootstrap/Microsoft.VisualBasic.dll \
lib/bootstrap/Microsoft.VisualBasic.dll.mdb \
lib/bootstrap/vbnc.exe \
lib/bootstrap/vbnc.exe.mdb \
lib/bootstrap/vbnc.rsp \
lib/bootstrap/Mono.Cecil.VB.dll \
lib/bootstrap/Mono.Cecil.VB.dll.mdb \
lib/bootstrap/Mono.Cecil.VB.Mdb.dll \
lib/bootstrap/Mono.Cecil.VB.Mdb.dll.mdb \
lib/bootstrap/Mono.Cecil.VB.Pdb.dll \
lib/bootstrap/Mono.Cecil.VB.Pdb.dll.mdb
dist-default: lib/bootstrap/Microsoft.VisualBasic.dll lib/bootstrap/vbnc.exe lib/bootstrap/vbnc.rsp
DIST_PROFILE_DIRS = bootstrap net_2_0 net_4_0 monotouch monodroid moonlight
dist-local: dist-default
-$(MKINSTALLDIRS) $(DIST_PROFILE_DIRS:%=$(distdir)/lib/%) $(COMPAT_PROFILE_DIRS:%=$(distdir)/compat/%)
clean-local test-local run-test-local run-test-ondotnet-local all-local install-local uninstall-local:
@:
|