summaryrefslogtreecommitdiff
path: root/core/makefile
diff options
context:
space:
mode:
authorruki <[email protected]>2020-09-26 22:03:21 +0800
committerruki <[email protected]>2020-09-26 22:03:21 +0800
commit737aace1b6eea27adf4035e1d86f9945b6da4762 (patch)
treed7a0aedffbbd8f2c7286586e1007ca783febd47b /core/makefile
parent7763755b72556aad080d235b711e34ee1b2510da (diff)
pass job for core/makefile
Diffstat (limited to 'core/makefile')
-rw-r--r--core/makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/makefile b/core/makefile
index b5f749f28..9d400c75b 100644
--- a/core/makefile
+++ b/core/makefile
@@ -38,20 +38,20 @@ endif
all : .null
@echo "" > $(TMP_DIR)/$(PRO_NAME).out
@echo make $(PRO_NAME)
- @$(MAKE) --no-print-directory -C $(SRC_DIR) || cat $(TMP_DIR)/$(PRO_NAME).out
+ +@$(MAKE) --no-print-directory -C $(SRC_DIR) || cat $(TMP_DIR)/$(PRO_NAME).out
# make rebuild
rebuild : .null
- @$(MAKE) c
- @$(MAKE)
- @$(MAKE) i
+ +@$(MAKE) c
+ +@$(MAKE)
+ +@$(MAKE) i
# make install
install : .null
@echo "" > $(TMP_DIR)/$(PRO_NAME).out
@echo install $(PRO_NAME)
- @$(MAKE) --no-print-directory -C $(SRC_DIR)
- @$(MAKE) --no-print-directory -C $(SRC_DIR) install
+ +@$(MAKE) --no-print-directory -C $(SRC_DIR)
+ +@$(MAKE) --no-print-directory -C $(SRC_DIR) install
# make lipo
lipo : .null
@@ -61,7 +61,7 @@ lipo : .null
clean : .null
@echo "" > $(TMP_DIR)/$(PRO_NAME).out
@echo clean $(PRO_NAME)
- @$(MAKE) --no-print-directory -C $(SRC_DIR) clean
+ +@$(MAKE) --no-print-directory -C $(SRC_DIR) clean
# make update
update : .null