diff options
author | Arun Isaac | 2022-01-23 23:57:26 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-23 23:58:29 +0530 |
commit | 00a54e7fb0475bc701885063b123938105346cd9 (patch) | |
tree | fc5da58456393c9fecdfe001f77bbb3d7aaecb54 /Makefile | |
parent | 9503120f2cbfb05a782721eaa19f7297c069938d (diff) | |
download | run64-00a54e7fb0475bc701885063b123938105346cd9.tar.gz run64-00a54e7fb0475bc701885063b123938105346cd9.tar.lz run64-00a54e7fb0475bc701885063b123938105346cd9.zip |
Makefile: Add standard directory variables.
* Makefile (prefix, exec_prefix, bindir): New variables.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -18,6 +18,10 @@ EMACS ?= emacs +prefix ?= /usr/local +exec_prefix ?= $(prefix) +bindir ?= $(exec_prefix)/bin + scripts = $(wildcard bin/*) .PHONY: all check install |