adding a Makefile - ploot - simple plotting tools | |
git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit f9e8a55f3bafb5dad451b50fedab9eb5dfd4cb20 | |
parent 51d676a1197f90fba3e657a875ad3905b95646a2 | |
Author: Josuah Demangeon <[email protected]> | |
Date: Tue, 6 Feb 2018 23:24:16 +0100 | |
adding a Makefile | |
Diffstat: | |
M Makefile | 4 ++++ | |
1 file changed, 4 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -5,6 +5,10 @@ all:ploot | |
ploot: ploot.o config.h | |
${CC} -static -o ploot ploot.o | |
+install: ploot | |
+ mkdir -p ${PREFIX}/bin | |
+ cp ploot ${PREFIX}/bin/ploot | |
+ | |
clean: | |
rm -f *.o ploot | |