diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-07-06 21:23:24 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2012-07-06 21:23:24 -0700 |
commit | 7a056b1c5244450523f752835f2a4d569b8b1d63 (patch) | |
tree | bde7a4d74e098776ca59b98a3e7f82a1739d968e /GNUmakefile | |
parent | 75dd1d62bb3b48d45fd61090ad7c74dc67d5296c (diff) | |
download | tmwa-7a056b1c5244450523f752835f2a4d569b8b1d63.tar.gz tmwa-7a056b1c5244450523f752835f2a4d569b8b1d63.tar.bz2 tmwa-7a056b1c5244450523f752835f2a4d569b8b1d63.tar.xz tmwa-7a056b1c5244450523f752835f2a4d569b8b1d63.zip |
Add 'make install' target.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7d0be35..9ae27ca 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -75,3 +75,7 @@ deps.make: done > deps.make include deps.make + +prefix=/usr/local +install: + install -t ${prefix}/bin/ $(wildcard ${PROGS}) |