diff options
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |