From 3364af2dbdea4c1d816b8499cf58ce0fa1790a62 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 13 Feb 2022 17:58:39 +0000 Subject: renamed shell scripts to .sh --- Makefile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4836466..4c2ad4c 100755 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.1