diff options
author | davidovski <david@davidovski.xyz> | 2022-02-13 17:58:39 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-13 17:58:39 +0000 |
commit | 3364af2dbdea4c1d816b8499cf58ce0fa1790a62 (patch) | |
tree | a628c7d618f66886b62f373f3680b632d1f42d78 | |
parent | 8ce674db7ea92f6b3e551280b462c4f52ac74116 (diff) |
renamed shell scripts to .sh
-rwxr-xr-x | Makefile | 15 | ||||
-rwxr-xr-x | src/parseconf.sh (renamed from src/parseconf) | 0 | ||||
-rwxr-xr-x | src/xichroot.sh (renamed from src/xichroot) | 0 |
3 files changed, 7 insertions, 8 deletions
@@ -6,7 +6,7 @@ PREFIX=/usr .DEFAULT_GOAL := build -install: install-hbar install-colors install-parseconf +install: install-hbar install-colors install-parseconf install-shtests build: build-hbar install-headers: src/*.h @@ -16,13 +16,10 @@ install-shtests: src/shtests install -m755 src/shtests.sh ${DESTDIR}${PREFIX}/bin/shtests install-chroot: src/xichroot - install -m755 src/xichroot ${DESTDIR}${PREFIX}/bin/ + install -m755 src/xichroot.sh ${DESTDIR}${PREFIX}/bin/xichroot install-parseconf: src/parseconf - install -m755 src/parseconf ${DESTDIR}${PREFIX}/bin/ - -check-parseconf: - shtests ./test/parseconf.sh + install -m755 src/parseconf.sh ${DESTDIR}${PREFIX}/bin/parseconf install-hbar: build-hbar install -m755 bin/hbar ${DESTDIR}${PREFIX}/bin @@ -30,11 +27,13 @@ install-hbar: build-hbar install-colors: src/colors.list sh src/generate_colors.sh ${DESTDIR}${PREFIX} src/colors.list +check-parseconf: + shtests ./test/parseconf.sh -clean: - rm -r bin build-hbar: src/hbar.c install-colors mkdir -pv bin ${CC} src/hbar.c -o bin/hbar ${FLAGS} +clean: + rm -r bin diff --git a/src/parseconf b/src/parseconf.sh index c5ed801..c5ed801 100755 --- a/src/parseconf +++ b/src/parseconf.sh diff --git a/src/xichroot b/src/xichroot.sh index 7136e25..7136e25 100755 --- a/src/xichroot +++ b/src/xichroot.sh |