blob: e281bcd08f7fbda8a1a519e5fdebcf4b3d3dbee2 (
plain) (
blame)
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
|
# SPDX-License-Identifier: GPL-3.0-or-later
#
# Copyright (C) 2024 Runxi Yu <https://runxiyu.org>
# Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
# Copyright (C) 2022 Leah Rowe <leah@libreboot.org>
.POSIX:
# Commands
# ========
all: config clean prepbox genbox box
include ./config.mk
config:
@echo "VERSION = $(VERSION)"
@echo "CFLAGS = $(CFLAGS)"
@echo "CC = $(CC)"
@echo "DESTDIR = $(DESTDIR)"
@echo "PREFIX = $(PREFIX)"
@echo "INCLUDE_EXTRA = $(INCLUDE_EXTRA)"
genbox:
cat "box-templates/box_1-23.c" > box.c
test ${INCLUDE_CORE} == n || for u in ${CORE}; do echo "int $${u%.c}_main(int, char**);" | sed "s/\[_/test_/g"; done>> box.c
test ${INCLUDE_EXTRA} == n || for u in ${EXTRA}; do echo "int $${u%.c}_main(int, char**);"; done>> box.c
cat "box-templates/box_45-49.c" >> box.c
test ${INCLUDE_CORE} == n || for u in ${CORE}; do echo " else if(!strcmp(basename(argv[0]), \"$${u%.c}\")) return $${u%.c}_main(argc, argv);" | sed "s/\[_/test_/g"; done >> box.c
test ${INCLUDE_EXTRA} == n || for u in ${EXTRA}; do echo " else if(!strcmp(argv[0], \"$${u%.c}\")) return $${u%.c}_main(argc, argv);"; done >> box.c
cat "box-templates/box_70-73.c" >> box.c
test ${INCLUDE_CORE} == n || for u in ${CORE}; do echo " printf(\"$${u%.c} \");"; done >> box.c
test ${INCLUDE_EXTRA} == n || for u in ${EXTRA}; do echo " printf(\"$${u%.c} \");"; done >> box.c
test ${INCLUDE_CORE} == n && test ${INCLUDE_EXTRA} == n && echo " printf(\"¯\\\\_(ツ)_/¯ No commands found.\");" >> box.c || true
cat "box-templates/box_94-96.c" >> box.c
echo "/* Generated on $$(date) */" >> box.c
prepbox:
mkdir -p box_tmp
test ${INCLUDE_CORE} == n || for f in ${CORE}; do (sed "s/^int main(/int $$(echo "$$f")_main(/" < "core/"$$f".c" | sed "s/\"..\/common/\"common/g" | sed "s/\[_/test_/g") > "box_tmp/"$$f"_box.c"; done
rm -f "box_tmp/[_box.c"
test ${INCLUDE_EXTRA} == n || for f in ${EXTRA}; do sed "s/^int main(/int $$(echo "$$f")_main(/" < "extras/"$$f".c" | sed "s/printUsage()/$$(echo "$$f")_printUsage()/g" > "box_tmp/"$$f"_box.c"; done
box: box.o
test ${INCLUDE_CORE} = n && test ${INCLUDE_EXTRA} = n && $(CC) $(CFLAGS) common/common.c box.o -o box || $(CC) $(CFLAGS) box_tmp/*.c common/common.c box.o -o box
rm -f version.h
clean:
rm -f box *.o
rm -Rf box_tmp
for f in $(CORE); do rm -f core/$$f; done
for f in $(EXTRA); do rm -f extras/$$f; done
install:
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -r core/bin/* $(DESTDIR)$(PREFIX)/bin
install-box:
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -r box $(DESTDIR)$(PREFIX)/bin
links:
for u in ${CORE}; do ln -s "$(DESTDIR)$(PREFIX)/bin/box" "$(DESTDIR)$(PREFIX)/bin/$$u"; done
remove:
rm -f $(DESTDIR)$(PREFIX)/bin/box
for u in ${CORE}; do rm -f "$(DESTDIR)$(PREFIX)/bin/$$u"; done
# Utilities
# =========
box.o: prepbox
$(CC) $(CFLAGS) -c box.c -o box.o
|