소스 검색

root/Makefile: forward install target to src/

- some OSes match the target with local file INSTALL
Daniel-Constantin Mierla 8 년 전
부모
커밋
09c3918fc7
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Makefile

+ 4 - 0
Makefile

@@ -16,3 +16,7 @@ KSR_DIR ?= src/
 # forward the default target
 default:
 	$(MAKE) -C $(KSR_DIR)
+
+.PHONY: install
+install:
+	$(MAKE) -C $(KSR_DIR) "$@"