diff options
author | davidovski <david@davidovski.xyz> | 2022-02-13 18:18:33 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-13 18:18:33 +0000 |
commit | 8ce2ebf8ffd9f5e0bf1070530ada9fd10ae1ae81 (patch) | |
tree | ff1e0d320951082c72a1f02fe159a0118d8961df | |
parent | f64795694af702b807e39c3e438d2733e0e31496 (diff) |
fixed make from creating extra files
-rwxr-xr-x | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,13 +12,13 @@ build: build-hbar install-headers: src/*.h install -m644 src/*.h ${DESTDIR}${PREFIX}/include -install-shtests: src/shtests +install-shtests: src/shtests.sh install -m755 src/shtests.sh ${DESTDIR}${PREFIX}/bin/shtests -install-chroot: src/xichroot +install-chroot: src/xichroot.sh install -m755 src/xichroot.sh ${DESTDIR}${PREFIX}/bin/xichroot -install-parseconf: src/parseconf +install-parseconf: src/parseconf.sh install -m755 src/parseconf.sh ${DESTDIR}${PREFIX}/bin/parseconf install-hbar: build-hbar |