2014-08-13 10:39:27 +01:00
|
|
|
if CROSS_COMPILING
|
2015-01-13 10:44:36 +00:00
|
|
|
SUBDIRS = arch utils io-layer cil metadata mini dis profiler
|
2014-08-13 10:39:27 +01:00
|
|
|
else
|
|
|
|
if INSTALL_MONOTOUCH
|
|
|
|
SUBDIRS = utils io-layer metadata arch mini profiler
|
|
|
|
|
|
|
|
monotouch-do-build:
|
|
|
|
@list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
|
|
case "x$$subdir" in \
|
|
|
|
xmetadata ) target="monotouch-do-build" ;; \
|
|
|
|
xmini ) target="monotouch-do-build" ;; \
|
|
|
|
* ) target="all" ;; \
|
|
|
|
esac; \
|
|
|
|
echo "Making $$target in $$subdir"; \
|
|
|
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
|
|
|
|
done;
|
|
|
|
|
|
|
|
monotouch-do-clean:
|
|
|
|
@list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
|
|
case "x$$subdir" in \
|
|
|
|
xmetadata ) target="monotouch-do-clean" ;; \
|
|
|
|
xmini ) target="monotouch-do-clean" ;; \
|
|
|
|
* ) target="clean" ;; \
|
|
|
|
esac; \
|
|
|
|
echo "Making $$target in $$subdir"; \
|
|
|
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
|
|
|
|
done;
|
|
|
|
else
|
2015-04-07 09:35:12 +01:00
|
|
|
SUBDIRS = arch utils io-layer cil metadata mini dis tests unit-tests benchmark profiler
|
2014-08-13 10:39:27 +01:00
|
|
|
endif
|
|
|
|
endif
|
2015-04-07 09:35:12 +01:00
|
|
|
DIST_SUBDIRS = arch utils io-layer cil metadata mini dis tests unit-tests benchmark profiler
|