diff options
| author | Lucas C. Villa Real <lucasvr@gmail.com> | 2017-01-03 13:50:37 -0200 |
|---|---|---|
| committer | Lucas C. Villa Real <lucasvr@gmail.com> | 2017-01-03 13:50:37 -0200 |
| commit | 09bb277ac8b14199f003e427641476d0d05c8515 (patch) | |
| tree | b253ac4f0ca9ea486f98b5c4cc4825f8affb55c7 | |
| parent | d6d6108a4ffdafd566303f4c28a63f8dffba9799 (diff) | |
| download | ThirdPartyInstallers-09bb277ac8b14199f003e427641476d0d05c8515.tar.xz | |
Adjust Makefile to have files under 'Functions' copied when running
the 'install' target.
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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* |
