Merge branch 'master' of github.com:solusipse/fiche - fiche - A pastebin adjust… | |
git clone git://vernunftzentrum.de/fiche.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 12205151078b89e48cee70ee450207a39046ae57 | |
parent 801231514cc99c0cfdb07e34797fcc49ea6f63d8 | |
Author: solusipse <[email protected]> | |
Date: Mon, 9 Oct 2017 19:58:42 +0200 | |
Merge branch 'master' of github.com:solusipse/fiche | |
Diffstat: | |
Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -1,12 +1,12 @@ | |
# for debug add -g -O0 to line below | |
CFLAGS+=-pthread -O2 -Wall -Wextra -Wpedantic -Wstrict-overflow -fno-strict-al… | |
-prefix=/usr/local | |
+prefix=/usr/local/bin | |
all: | |
${CC} main.c fiche.c $(CFLAGS) -o fiche | |
install: fiche | |
- install -m 0755 fiche $(prefix)/bin | |
+ install -m 0755 fiche $(prefix) | |
clean: | |
rm -f fiche |