aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2012-06-17 17:34:15 +0200
committerJakob Odersky <jodersky@gmail.com>2012-06-17 17:34:15 +0200
commit22e4b743916288a48cd7055652216a8b2690abb8 (patch)
treedce0fc2ac9fc3f639452e0e5bba2209a0ac27ae1 /Makefile
parent5ee8b13dc75d2a0527c1c3d8315e174fac29d2c5 (diff)
downloadk8055-22e4b743916288a48cd7055652216a8b2690abb8.tar.gz
k8055-22e4b743916288a48cd7055652216a8b2690abb8.tar.bz2
k8055-22e4b743916288a48cd7055652216a8b2690abb8.zip
update readme
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 16db019..0b1f095 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
PREFIX = /usr/local
-
+#run this if you want to build everything but not install user-wide or system-wide
local: compile copy
compile:
@@ -36,15 +36,15 @@ install-permissions: install-rules
uninstall-permissions: uninstall-rules
groupdel k8055
-install: compile
+install-product: compile
cp src/*.so $(PREFIX)/lib
cp src/*.h $(PREFIX)/include
-uninstall:
+uninstall-product:
rm $(PREFIX)/lib/libk8055.so
rm $(PREFIX)/include/k8055.h
-install-all: install install-permissions
+install: install-product install-permissions
-uninstall-all: uninstall-permissions uninstall
+uninstall: uninstall-permissions uninstall-product