+prepare:
+ @[ -f $(PKG_BUILD_DIR)/.prepared ] || { \
+ $(PKG_TRACE) Preparing...; \
+ $(MAKE) $(PKG_BUILD_DIR)/.prepared $(MAKE_TRACE); \
+ }
+
+configure:
+ @[ -f $(PKG_BUILD_DIR)/.configured ] || { \
+ $(PKG_TRACE) Configuring...; \
+ $(MAKE) $(PKG_BUILD_DIR)/.configured $(MAKE_TRACE); \
+ }
+
+compile-targets:
+compile: prepare
+ @[ -f $(PKG_BUILD_DIR)/.configured ] || { \
+ $(PKG_TRACE) Configuring...; \
+ $(MAKE) $(PKG_BUILD_DIR)/.configured $(MAKE_TRACE); \
+ }
+ @$(PKG_TRACE) Compiling...
+ @$(MAKE) compile-targets $(MAKE_TRACE)
+
+install-targets: