1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include ../makerules
cdeps = compose.c iaia.c tbl.c
cpaths = $(cdeps:%=$(root)/clib/%)
$(root)/kpw: kpw.c opt.inc err.inc $(cpaths)
$(cc) -I$(root) $< -lsodium -o $@ $(flags) $(cc-post)
tab = cat $< | awk -v emit=$1 -F'\t+' -f $<.awk >> $@
opt.inc: optab optab.awk
:>$@
$(call tab,cond)
$(call tab,enum)
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include ../makerules
cdeps = compose.c iaia.c tbl.c
cpaths = $(cdeps:%=$(root)/clib/%)
$(root)/kpw: kpw.c opt.inc err.inc $(cpaths)
$(cc) -I$(root) $< -lsodium $(l-shmem) -o $@ $(flags) $(cc-post)
tab = cat $< | awk -v emit=$1 -F'\t+' -f $<.awk >> $@
opt.inc: optab optab.awk
:>$@
$(call tab,cond)
$(call tab,enum)
|