aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ee0b462..3b60d78 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,9 @@ CFLAGS = \
-O3 -march=native -mtune=native -pipe
LDLIBS = -lfl
+PREFIX = /usr/local
+DPREFIX = ${DESTDIR}${PREFIX}
+
all: ${target}
${target}: lex.yy.c
${CC} ${CFLAGS} ${LDLIBS} -o $@ $<
@@ -14,5 +17,10 @@ ${target}: lex.yy.c
lex.yy.c: main.l
${LEX} $<
+install:
+ mkdir -p ${DPREFIX}/bin ${DPREFIX}/share/man/man1
+ cp ${target} ${DPREFIX}/bin
+ cp ${target}.1 ${DPREFIX}/share/man/man1
+
clean:
rm -f ${target} lex.yy.c