summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2e87dfc7a59f6857ff9330463878ae51ef172c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
CC=gcc
FLAGS=

DESTDIR=
PREFIX=/usr

.DEFAULT_GOAL := build

install: install-hbar install-colors install-parseconf install-shtests install-glyphs
check: check-parseconf
build: build-hbar 

install-headers: src/*.h
	install -m644 src/*.h ${DESTDIR}${PREFIX}/include

install-shtests: src/shtests.sh
	install -m755 src/shtests.sh ${DESTDIR}${PREFIX}/bin/shtests

install-chroot: src/xichroot.sh
	install -m755 src/xichroot.sh ${DESTDIR}${PREFIX}/bin/xichroot

install-parseconf: src/parseconf.sh
	install -m755 src/parseconf.sh ${DESTDIR}${PREFIX}/bin/parseconf

install-hbar: build-hbar
	install -m755 bin/hbar ${DESTDIR}${PREFIX}/bin

install-colors: src/colors.list
	sh src/generate_colors.sh ${DESTDIR}${PREFIX} src/colors.list

install-glyphs: src/glyphs.sh
	install -m755 src/glyphs.sh ${DESTDIR}${PREFIX}/lib


check-parseconf: 
	shtests ./test/parseconf.sh

build-hbar: src/hbar.c install-colors
	mkdir -pv bin
	${CC} src/hbar.c -o bin/hbar ${FLAGS}

clean:
	rm -r bin