blob: 5f874ed830f7f61c7fdd562b9292c5646825c0dd (
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
|
#default PREFIX /usr/local
#default INCLDIR /include
#default LIBDIR /lib
#default CC gcc
#ifdef LIBTABULAR_DEBUG
#define DEBUG 1
#endif
#ifdef DEBUG
#define OPT_CFLAGS -Og -g
#else
#define OPT_CFLAGS -O2
#endif
cflags = -Wunused-function -Wunused-variable -Wconversion -Wformat
-I include -I lib/liballoc/include #{OPT_CFLAGS}
#{EXTRA_CFLAGS} #{LIBTABULAR_EXTRA_CFLAGS}
rule liba
#{CC} -o $out.tmp.o $in $cflags -r
objcopy --keep-global-symbols=libtabular.api $out.tmp.o $out.fixed.o
ar rcs $out $out.fixed.o
rm $out.tmp.o $out.fixed.o
rule libso
#{CC} -o $out $in $cflags -shared -Wl,-version-script libtabular.lds
rule cc
#{CC} -o $out $in $cflags
rule mkdir
mkdir $out
target build
mkdir
target lib/liballoc/build/liballoc.a
rmk lib/liballoc
target build/libtabular.a
liba src/tabular.c src/util.c lib/liballoc/build/liballoc.a
| build include/tabular.h libtabular.api
target build/libtabular.so
libso src/tabular.c src/util.c
| build include/tabular.h libtabular.lds
target build/test
cc src/test.c build/libtabular.a lib/liballoc/build/liballoc.a | build
command clean
rm -rf build
command cleanall
rmk clean
rmk -C lib/liballoc cleanall
command install
install -m644 include/tabular.h -t "#{DESTDIR}#{PREFIX}#{INCLDIR}"
install -m755 build/libtabular.a -t "#{DESTDIR}#{PREFIX}#{LIBDIR}"
install -m755 build/libtabular.so -t "#{DESTDIR}#{PREFIX}#{LIBDIR}"
command uninstall
rm -f "#{DESTDIR}#{PREFIX}#{INCLDIR}/tabular.h"
rm -f "#{DESTDIR}#{PREFIX}#{LIBDIR}/libtabular.a"
rm -f "#{DESTDIR}#{PREFIX}#{LIBDIR}/libtabular.so"
command all
rmk build/libtabular.a build/libtabular.so build/test
|