remove outdated license header
[libjh.git] / compile.sh
1 #!/bin/bash
2 # YES, THIS NEEDS BASH, NOT /bin/sh (e.g. for <<<).
3
4 # Copyright (2013) Jann Horn <jann@thejh.net>
5
6 # -f                  for files with weird names
7 # -u                  for coding mistakes (or against, to be precise)
8 # -e and -o pipefail  so that we don't have to spam the code with error handling
9 set -f -u -e -o pipefail
10
11 # flags for the build - adjust for your needs
12 # delete all the generated stuff afterwards (with `rm -r gen`)
13 CC='gcc'
14 CFLAGS='-O3 -Wall -Werror -fPIC -std=c99 -march=native'
15
16 # create build environment if it doesn't exist yet
17 mkdir -p gen # contains all generated files
18 mkdir -p gen/realc # source files, with our preprocessing applied
19 mkdir -p gen/realc_preprocessed # source files, preprocessed by the C compiler
20 mkdir -p gen/chash # hashes of the preprocessed C files used to generate files in gen/obj
21 mkdir -p gen/obj # object files
22
23 echo "welcome. your friendly compiler will be \"$CC\" today." >&2
24 echo "going ahead with CFLAGS=\"$CFLAGS\"..." >&2
25
26 # generate header
27 for source_file in $(ls|grep '\.c$'); do
28   echo "extracting header data from $source_file..." >&2
29   source_name="$(sed 's|\.c$||' <<< "$source_file")"
30   echo "/* ----========   $source_name   ========---- */"
31   
32   cat "$source_file" |
33   sed 's|^PUBLIC_FN \(.*\){|KEEPLINE \1;|g' |
34   sed 's|^PUBLIC_CONST |KEEPLINE #define |g' |
35   sed 's|^HEADER |KEEPLINE |g' |
36   grep '^KEEPLINE' |
37   sed 's|^KEEPLINE ||g'
38   
39   echo ''
40   echo ''
41 done > gen/jh.h
42
43 # preprocess all source files
44 for source_file in $(ls|grep '\.c$'); do
45   echo "handling source file $source_file..." >&2
46   source_name="$(sed 's|\.c$||' <<< "$source_file")"
47   
48   # do our own preprocessing
49   echo '#include "../jh.h"' > "gen/realc/$source_name.c"
50   
51   cat "$source_file" |
52   grep -v '^PUBLIC_CONST ' |
53   sed 's|^PUBLIC_FN ||g' |
54   grep -v '^HEADER ' |
55   cat >> "gen/realc/$source_name.c"
56   if [ $? -ne 0 ]; then exit 1; fi
57   
58   # do the normal C preprocessing
59   echo 'preprocessing...' >&2
60   $CC -E "gen/realc/$source_name.c" > "gen/realc_preprocessed/$source_name.i"
61   
62   # compile if there have been changes since the last time
63   echo -n 'checking sha checksum... ' >&2
64   file_hash="$(shasum "gen/realc_preprocessed/$source_name.i" | cut -d' ' -f1)"
65   # drop errors: that file might well be missing
66   set +e
67   last_file_hash="$(cat "gen/chash/$source_name" 2>/dev/null)"
68   set -e
69   if [ "$file_hash" = "$last_file_hash" ]; then
70     echo 'unchanged, will not compile again' >&2
71   else
72     echo 'changed – recompiling.' >&2
73     $CC $CFLAGS -c -o "gen/obj/$source_name.o" "gen/realc_preprocessed/$source_name.i"
74     echo "$file_hash" > "gen/chash/$source_name"
75   fi
76 done
77
78 # ... and link!
79 cd gen/obj
80 $CC -shared -Wl,-soname,libjh.so -o ../libjh.so $(ls)
81 cd ../..