From 09bb277ac8b14199f003e427641476d0d05c8515 Mon Sep 17 00:00:00 2001 From: "Lucas C. Villa Real" Date: Tue, 3 Jan 2017 13:50:37 -0200 Subject: Adjust Makefile to have files under 'Functions' copied when running the 'install' target. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c2d628..3299916 100644 --- a/Makefile +++ b/Makefile @@ -9,8 +9,10 @@ debug: install: install -d $(PREFIX)/bin install -d $(PREFIX)/Resources - install --mode=644 Resources/Dependencies $(PREFIX)/Resources + install -d $(PREFIX)/Functions install --mode=755 $(wildcard bin/*) $(PREFIX)/bin + install --mode=644 $(wildcard Resources/*) $(PREFIX)/Resources + install --mode=644 $(wildcard Functions/*) $(PREFIX)/Functions clean: rm -rf Resources/FileHash* -- cgit v1.1