Browse Source

Makefile: root forwarding of target without enclosing in double quotes

Daniel-Constantin Mierla 8 năm trước cách đây
mục cha
commit
9da4b45f4e
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -11,7 +11,7 @@ KSR_DIR ?= src/
 
 # forward all named targets
 %:
-	$(MAKE) -C $(KSR_DIR) "$@"
+	$(MAKE) -C $(KSR_DIR) $@
 
 # forward the default target
 default:
@@ -19,4 +19,4 @@ default:
 
 .PHONY: install
 install:
-	$(MAKE) -C $(KSR_DIR) "$@"
+	$(MAKE) -C $(KSR_DIR) $@