blob: 68385476f77473dc9597e4079024370ed37a0b99 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
FLAGS=
DESTDIR=
PREFIX=/usr
DIST=dist
.DEFAULT_GOAL := build
install: build install-hbar install-colors install-parseconf install-shtests install-glyphs install-xitui install-xilib
check: check-parseconf
build: make-dist hbar shtests parseconf colors
make-dist:
mkdir -p ${DIST}
install-headers: src/*.h
install -Dm644 src/*.h ${DESTDIR}${PREFIX}/include
install-shtests: shtests
install -Dm755 ${DIST}/shtests ${DESTDIR}${PREFIX}/bin/shtests
install-parseconf: parseconf
install -Dm755 ${DIST}/parseconf ${DESTDIR}${PREFIX}/bin/parseconf
install-hbar: hbar
install -Dm755 ${DIST}/hbar ${DESTDIR}${PREFIX}/bin
install-colors: src/colors.list
install -Dm755 ${DIST}/colors.sh ${DESTDIR}${PREFIX}/lib/colors.sh
install -Dm755 ${DIST}/colors.h ${DESTDIR}${PREFIX}/include/colors.h
install-glyphs: src/glyphs.sh
install -Dm755 src/glyphs.sh ${DESTDIR}${PREFIX}/lib
install-xitui: src/xitui.sh
install -Dm755 src/xitui.sh ${DESTDIR}${PREFIX}/lib
install-xilib: src/xilib.sh
install -Dm755 src/xilib.sh ${DESTDIR}${PREFIX}/lib
check-parseconf: shtests parseconf test/parseconf.sh
${DIST}/shtests ./test/parseconf.sh
hbar: colors src/hbar.c
${CC} -I${DIST} src/hbar.c -o ${DIST}/hbar ${FLAGS}
shtests: src/shtests.sh
install -Dm755 src/shtests.sh ${DIST}/shtests
parseconf: src/parseconf.sh
install -Dm755 src/parseconf.sh ${DIST}/parseconf
colors: src/colors.list
cp src/colors.sh ${DIST}
cp src/colors.h ${DIST}
clean:
rm -r ${DIST}
# xichroot
#
install-chroot: src/xichroot.sh
install -Dm755 src/xichroot.sh ${DESTDIR}${PREFIX}/bin/xichroot
# default-jvm
#
install-chroot: src/default-jvm.sh
install -Dm755 src/default-jvm.sh ${DESTDIR}${PREFIX}/bin/default-jvm
|