summaryrefslogtreecommitdiff
path: root/configure
blob: e15b0b7dcbacaa109001f6e3e80aaf5fb861e342 (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165

set -e
if test -n "$BASH_VERSION"; then set -o posix; fi

# See https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
prefix=/usr/local
exec_prefix='$(PREFIX)'
exec_suffix=
bindir='$(EXEC_PREFIX)/bin'
verbose=0


main() {
    parseArgs "$@"
    printMakefile > Makefile
}


printHelp() {
    echo ''
    echo "Example usage:   $0 --prefix /usr/local"
    echo ''
    echo 'Options:'
    echo '    --prefix "/usr/local"'
    echo '    --exec-prefix "$(PREFIX)"'
    echo '    --exec-suffix ""'
    echo '    --bindir "$(EXEC_PREFIX)/bin"'
    echo '    --verbose 0'
    echo ''
}


parseArgs() {
    # See: https://stackoverflow.com/a/14203146/4415884
    while test $# -gt 0 ; do
        case $1 in
            --help)        printHelp;       exit 1; ;;
            --prefix)      prefix="$2"      shift; shift; ;;
            --exec-prefix) exec_prefix="$2" shift; shift; ;;
            --exec-suffix) exec_suffix="$2" shift; shift; ;;
            --bindir)      bindir="$2"      shift; shift; ;;
            --verbose)     verbose="$2"     shift; shift; ;;
            *) echo "[ERROR] Unexpected argument: $1"; exit 1 ;;
        esac
    done
    if test "$verbose" != "0" -a "$verbose" != "1"; then
        echo "[ERROR] verbose expected to be 0 or 1. But is: $verbose";
        false;
    fi
}


printMakefile () {
    printf '\n'
    printf '%s\n' '# This file is generated by configure script. Manual changes may be lost'
    printf '%s\n' '# when calling configure again.'
    printf '\n'
    printf '%s\n' 'CC=gcc'
    printf '%s\n' 'TAR=tar'
    printf '%s\n' 'MKDIRS=mkdir -p'
    printf '%s\n' 'RIMRAF=rm -rf'
    printf '%s\n' 'COPYTO=cp -t'
    printf '%s\n' "PREFIX=$prefix"
    printf '%s\n' "EXEC_PREFIX=$exec_prefix"
    printf '%s\n' "EXEC_SUFFIX=$exec_suffix"
    printf '%s\n' "BINDIR=$bindir"
    printf '%s\n' "NDEBUG=1"

    # If PROJECT_VERSION set, use it.
    # If not, try generate via git describe.
    # If fails (eg git not avail), create pseudo version using date.
    printf '%s'   'PROJECT_VERSION=$(shell'
    printf '%s'   ' ret=$$(git describe --tags 2>/dev/null |sed -E "s;^v;;");'
    printf '%s'   ' if test -n "$$ret" -a -n "$$(git status --porcelain 2>/dev/null)"; then'
    printf '%s'       ' ret="$$ret+dirt";'
    printf '%s'   ' fi;'
    printf '%s'   ' if test -z "$$ret"; then ret=$$(date -u +0.0.0-%Y%m%d.%H%M%S); fi;'
    printf '%s\n' ' echo "$$ret")'

    printf '\n'
    printf '%s'   'CFLAGS= --std=c99'
    printf '%s'   ' -Wall -Wextra -Werror -fmax-errors=3'
    printf '%s'   ' -Wno-error=unused-function -Wno-error=unused-label'
    printf '%s'   ' -Wno-error=unused-variable -Wno-error=unused-parameter'
    printf '%s'   ' -Wno-error=unused-const-variable'
    # Not supported by debian 9 and older
    #printf '%s'   ' -Werror=implicit-fallthrough=1'
    printf '%s'   ' -Wno-error=unused-but-set-variable'
    printf '%s'   ' -Wno-unused-function -Wno-unused-parameter'
    printf '%s\n' ' -DPROJECT_VERSION=$(PROJECT_VERSION)'
    printf '%s\n' ''
    printf '%s\n' 'LDFLAGS= -Wl,--no-demangle,--fatal-warnings'
    printf '%s\n' ''
    printf '%s\n' 'INCDIRS= -Isrc/bulk_ln -Isrc/common'
    printf '%s\n' ''
    printf '%s\n' 'ifndef NDEBUG'
    printf '%s\n' '	CFLAGS := $(CFLAGS) -ggdb -O0 -g3'
    printf '%s\n' 'else'
    printf '%s\n' '	CFLAGS := $(CFLAGS) -ffunction-sections -fdata-sections -Os "-DNDEBUG=1"'
    printf '%s\n' '	LDFLAGS := $(LDFLAGS) -Wl,--gc-sections,--as-needed'
    printf '%s\n' 'endif'

    if test "$verbose" = "0"; then
        printf '\n'
        printf '%s\n' '.SILENT:';
    fi

    printf '\n'
    printf '%s\n' 'default: link dist'

    printf '\n'
    printf '%s\n' '.PHONY: clean'
    printf '%s\n' 'clean:'
    printf '%s\n' '	echo $(RIMRAF) build dist'
    printf '%s\n' '	$(RIMRAF) build dist'

    printf '\n'
    printf '%s\n' '.PHONY: link'
    printf '%s\n' 'link: build/bin/bulk-ln$(EXEC_SUFFIX)'

    printf '\n'
    printf '%s\n' 'build/obj/%.o: src/%.c'
    printf '%s\n' '	echo "  CC    $@"'
    printf '%s\n' '	$(MKDIRS) "$(shell T=$@; echo $${T%/*})"'
    printf '%s\n' '	$(CC) -c -o $@ $^ $(CFLAGS) $(INCDIRS)'

    printf '\n'
    printf '%s'   'build/bin/bulk-ln$(EXEC_SUFFIX):'
                  # dependencies
    printf '%s'   ' build/obj/bulk_ln/bulk_ln.o'
    printf '%s'   ' build/obj/bulk_ln/bulk_ln_main.o'
    printf '\n'   # commands
    printf '%s\n' '	echo "  LN    $@"'
    printf '%s\n' '	$(MKDIRS) "$(shell T=$@; echo $${T%/*})"'
    printf '%s\n' '	$(CC) -o $@ $(LDFLAGS) $^ $(LIBSDIR)'

    printf '\n'
    printf '%s\n' '.PHONY: dist'
    printf '%s\n' 'dist: link'
    printf '%s\n' '	echo "  Package"'
    printf '%s\n' '	$(RIMRAF) build/dist-* dist'
    printf '%s\n' '	$(MKDIRS) dist'
                  # Create Executable bundle.
    printf '%s\n' '	$(MKDIRS) build/dist-bin && $(COPYTO) build/dist-bin \'
    printf '%s\n' '		README*'
    printf '%s\n' '	$(MKDIRS) build/dist-bin/bin && $(COPYTO) build/dist-bin/bin \'
    printf '%s\n' '		build/bin/*'

    printf '%s\n' '	(cd build/dist-bin && find . -type f -not -name MD5SUM -exec md5sum -b {} +) > build/dist-bin/MD5SUM'

    printf '%s\n' '	(cd build/dist-bin && $(TAR) --owner=0 --group=0 -czf "../../dist/BulkLn-$(PROJECT_VERSION).tgz" *)'
    printf '%s\n' '	echo "" && echo "See '\''./dist/'\'' for result." && echo ""'
    printf '%s'   '	if test -n "$$(git status --porcelain 2>/dev/null)"; then'
    printf '%s'       ' echo "[WARN ] Worktree dirty!"; sleep 2;'
    printf '%s\n' ' fi'

    printf '\n'
    printf '%s\n' '.PHONY: install'
    printf '%s\n' 'install:'
    printf '%s\n' '	$(MKDIRS) "$(BINDIR)"'
    printf '%s\n' '	$(TAR) --strip-components=1 -C "$(BINDIR)" -xzf "$(shell ls dist/BulkLn-*.tgz)" -- bin'
}


main "$@"