diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -32,3 +32,13 @@ clean: tests: dist cd test && make clean tests + +install: dist + cp src/log.h ${PREFIX}/include/log.h + mkdir -p ${PREFIX}/lib/log + cp ${LIBNAME:=.so} ${PREFIX}/lib/log/${LIBNAME:=.so} + cp ${LIBNAME:=.a} ${PREFIX}/lib/log/${LIBNAME:=.a} + +uninstall: + rm -f ${PREFIX}/include/log.h + rm -rf ${PREFIX}/lib/log |