From 3e0954b397194815b2e065ca56a9f6669e6c2efe Mon Sep 17 00:00:00 2001 From: Alan McGovern Date: Tue, 25 Jun 2013 10:32:30 -0400 Subject: [build] Hello make aot If someone wants to AOT their binaries after compilation they can now just run 'make aot' from the toplevel makefile. This is useful for getting nice information in the macos profiler, or in gdb when backtracing. --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 166c6aeeca..00c7182be9 100644 --- a/Makefile +++ b/Makefile @@ -77,6 +77,13 @@ dist: update_submodules remove-stale-tarballs dist-recursive @cd tarballs && tar -cjf monodevelop-$(PACKAGE_VERSION).tar.bz2 monodevelop-$(PACKAGE_VERSION) @cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION) +aot: + for i in main/build/bin/*.dll; do mono --aot $$i; done + for i in main/build/bin/*/*.dll; do mono --aot $$i; done + for i in main/build/AddIns/*.dll; do mono --aot $$i; done + for i in main/build/AddIns/*/*.dll; do mono --aot $$i; done + for i in main/build/AddIns/*/*/*.dll; do mono --aot $$i; done + run: cd main && $(MAKE) run -- cgit v1.2.3