Skip to content

Commit 09bb277

Browse files
committed
Adjust Makefile to have files under 'Functions' copied when running
the 'install' target.
1 parent d6d6108 commit 09bb277

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ debug:
99
install:
1010
install -d $(PREFIX)/bin
1111
install -d $(PREFIX)/Resources
12-
install --mode=644 Resources/Dependencies $(PREFIX)/Resources
12+
install -d $(PREFIX)/Functions
1313
install --mode=755 $(wildcard bin/*) $(PREFIX)/bin
14+
install --mode=644 $(wildcard Resources/*) $(PREFIX)/Resources
15+
install --mode=644 $(wildcard Functions/*) $(PREFIX)/Functions
1416

1517
clean:
1618
rm -rf Resources/FileHash*

0 commit comments

Comments
 (0)