diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2014-09-15 16:10:16 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2014-10-10 16:44:40 +0200 |
commit | 1737411a0067967d2449a1fa85717b298e284380 (patch) | |
tree | 7e9c57e0bba3996db13d1010773759cbc2ef9829 /Makefile | |
parent | 2b1a69f7a18c8fc74eb44964089264d58b23482d (diff) | |
download | xtools-1737411a0067967d2449a1fa85717b298e284380.tar.gz xtools-1737411a0067967d2449a1fa85717b298e284380.tar.xz xtools-1737411a0067967d2449a1fa85717b298e284380.zip |
add Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..085d450 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +PREFIX=${HOME} +DESTDIR= + +all: + +install: + for f in x*[^~]; do install -Dm0755 $$f $(DESTDIR)$(PREFIX)/bin/$$f; done + |