summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsin2015-01-30 16:29:34 +0000
committersin2015-01-30 16:29:34 +0000
commit4aae55c8d9e11f9c74bd214a8d89dae333ca7572 (patch)
treec525714458f826f057267f5949b113da8069e514 /Makefile
parente4fe187649888bfa54dd92e4c6b85683579058e8 (diff)
Ensure make install can copy dirs too
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 78614d2..6771946 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ PREFIX = /usr/local
2 2
3install: 3install:
4 mkdir -p $(DESTDIR)$(PREFIX)/include/fortify 4 mkdir -p $(DESTDIR)$(PREFIX)/include/fortify
5 cp -f include/* $(DESTDIR)$(PREFIX)/include/fortify 5 cp -rf include/* $(DESTDIR)$(PREFIX)/include/fortify
6 6
7.PHONY: 7.PHONY:
8 install 8 install