diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-02-27 07:16:20 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-02-27 07:16:20 +0000 |
commit | f99cedd236f06544b5937d5d362ada3059a5ca4b (patch) | |
tree | 102f5065be53cc55d88493a95494011faef9dd59 /Makefile | |
parent | 463a0e5c3e97d389f150f9646d6a0147ea0cf570 (diff) | |
download | pandoc-f99cedd236f06544b5937d5d362ada3059a5ca4b.tar.gz |
Strip executable binaries before installing.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@551 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -197,6 +197,7 @@ install-executable-files = \ # Program only installation. .PHONY: install-exec uninstall-exec install-exec: build-exec + $(STRIP) $(EXECS) $(call install-executable-files,$(PROGS),$(BINPATH)) uninstall-exec: -for f in $(notdir $(PROGS)); do rm -f $(BINPATH)/$$f; done ; |