aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Paweł Zuzelski <pawelz@pld-linux.org>2010-01-12 23:21:53 +0100
committerGravatar Paweł Zuzelski <pawelz@pld-linux.org>2010-01-12 23:21:53 +0100
commita16f153fb9df9d3f9c712dd8aa8b140c6520ef6f (patch)
treebfa8bc82887396c656a779022e2003e136fad06b /Makefile
parentd8ba750b6a6c070b8dcadd96944a096a52267fcf (diff)
Don't strip binary. Strip moved to separate target
Makefile should not strip binary. It should be handled by package manager.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 626d21e..eeb2622 100644
--- a/Makefile
+++ b/Makefile
@@ -34,9 +34,6 @@ uzbl-core: ${TOBJ} # why doesn't ${OBJ} work?
@echo LINKING object files
@${CC} -o $@ ${OBJ} ${LDFLAGS}
@echo ... done.
- @echo Stripping binary
- @strip $@
- @echo ... done.
uzbl-browser: uzbl-core
@@ -92,6 +89,11 @@ clean:
cd ./tests/; $(MAKE) clean
rm -rf ./sandbox/{examples,usr}/
+strip:
+ @echo Stripping binary
+ @strip uzbl-core
+ @echo ... done.
+
install: install-uzbl-core install-uzbl-browser install-uzbl-tabbed
install-uzbl-core: all