소스 검색

Make Makefile PREFIX overridable

User may not want or be able to install in /usr, and want to specify an
alternative.
Andrew Marshall 3 년 전
부모
커밋
4474854664
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -4,7 +4,7 @@
 VERSION = 0.1
 
 # paths
-PREFIX = /usr
+PREFIX ?= /usr
 
 PROJDIRS := src
 SRCFILES := $(shell find $(PROJDIRS) -type f -name "*.cc")