+prepare: source
+ @[ -f $(PKG_BUILD_DIR)/.prepared ] || { \
+ $(CMD_TRACE) "preparing... "; \
+ $(MAKE) $(PKG_BUILD_DIR)/.prepared $(MAKE_TRACE); \
+ }
+
+configure: prepare
+ @[ -f $(PKG_BUILD_DIR)/.configured ] || { \
+ $(CMD_TRACE) "configuring... "; \
+ $(MAKE) $(PKG_BUILD_DIR)/.configured $(MAKE_TRACE); \
+ }
+
+compile-targets:
+compile: configure
+ @$(CMD_TRACE) "compiling... "
+ @$(MAKE) compile-targets $(MAKE_TRACE)
+
+install-targets: