From 14349a88dd90fd7643b57bca83d8027d1a0224cb Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 4 Oct 2023 22:30:21 +0200 Subject: Add an install target --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- cgit v1.2.3