linux-qubasis
linux oasis port as a qubes template
git clone https://9o.is/git/linux-qubasis.git
gen.sh
(572B)
1 git 20250116
2
3 cflags "
4 -std=c11
5 -I$srcdir
6 -I$outdir
7 -D_XOPEN_SOURCE=700
8 -Wno-implicit-function-declaration
9 -Wno-int-conversion
10 -Wno-unused-parameter
11 "
12
13 rule maketab '$hostdir/maketab $in >$out'
14 bind description 'MAKETAB $out'
15
16 yacc 'awkgram.tab.c awkgram.tab.h' awkgram.y
17 bind yaccflags -d -b $outdir/awkgram
18
19 maketab proctab.c $outdir/awkgram.tab.h
20
21 bin awk "
22 b.c
23 lex.c
24 lib.c
25 main.c
26 parse.c
27 run.c
28 tran.c
29 $outdir/awkgram.tab.c
30 $outdir/awkgram.tab.h
31 $outdir/proctab.c
32 "
33
34 man awk.1
35
36 host() {
37 cflags -I$tgtdir
38 exe maketab maketab.c $tgtdir/awkgram.tab.h
39 }