X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=blobdiff_plain;f=Makefile;h=7c7692b919d7abaead1953f1ba9424d18fc92706;hp=c5624003bd88ffe8dc81f2e4ddb24087ef61be60;hb=031222f07c4ac6549cfdcb0667114ba5476bbbaf;hpb=db618397cc9cb09491aea262bff46ebee6b1e010 diff --git a/Makefile b/Makefile index c562400..7c7692b 100644 --- a/Makefile +++ b/Makefile @@ -106,7 +106,7 @@ build/org/ibex/nestedvm/util/.Dummy.class: $(java_classes): build/org/ibex/nestedvm/util/.Dummy.class endif -$(java_classes): $(java_sources) $(tasks)/build_darcs_classgen +$(java_classes): $(java_sources) $(tasks)/build_git_classgen $(JAVAC) -classpath "$(classpath)" -d build $(java_sources) # GCJ Stuff @@ -235,7 +235,7 @@ nestedvm.jar: $(java_classes) .manifest .gcclass_hints: $(java_sources) sed -n 's/.*GCCLASS_HINT: \([^ ]*\) \([^ ]*\).*/hint:\1:\2/p' $(java_sources) > $@ -compact_runtime_compiler.jar: $(java_classes) .manifest $(tasks)/build_darcs_gcclass .gcclass_hints +compact_runtime_compiler.jar: $(java_classes) .manifest $(tasks)/build_git_gcclass .gcclass_hints mkdir -p tmp/pruned rm -rf tmp/pruned/* $(JAVA) -cp \ @@ -408,7 +408,7 @@ ntlmtest: build/tests/NtlmAuth.class @test -e smb.conf || cp upstream/build/samba/examples/smb.conf.default smb.conf $(JAVA) -cp "$(classpath)" tests.NtlmAuth --username=brian --password=test --diagnostics -d 5 -ntlmauth.jar: build/tests/NtlmAuth.class $(tasks)/build_darcs_gcclass .gcclass_hints +ntlmauth.jar: build/tests/NtlmAuth.class $(tasks)/build_git_gcclass .gcclass_hints mkdir -p tmp/pruned rm -rf tmp/pruned/* java -cp \ @@ -518,7 +518,10 @@ pdf: doc/ivme04.pdf open doc/ivme04.pdf push: - if [ "$${HOSTNAME#*.}" = "brianweb.net" ]; then \ - darcs push charger.brianweb.net:/home/darcs/nestedvm; \ - fi - darcs push /afs/ibex.org/project/nestedvm + git push /afs/megacz.com/web/org/ibex/nestedvm/ master + +snapshot: + git archive --prefix=nestedvm-`date +%Y-%m-%d`/ HEAD | \ + gzip -c > \ + /afs/megacz.com/web/org/ibex/nestedvm/dist/nestedvm-`date +%Y-%m-%d`.tgz + @echo url is http://nestedvm.ibex.org/dist/dist/nestedvm-`date +%Y-%m-%d`.tgz