-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
175 lines (140 loc) · 4.77 KB
/
Makefile
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
166
167
168
169
170
171
172
173
174
175
################################################################################
################################################################################
##
## This file is used for building the final extension release package,
## compiling bloom filter code to run in a terminal and in WebAssembly, running
## tests on the Bloom filter and Murmur3 implementations, and for cleaning up
## garbage files that may accumulate over time.
##
## Created by Jacob Strieb
## January 2021
##
################################################################################
################################################################################
################################################################################
# Variables
################################################################################
SHELL = /bin/sh
# NOTE: GNU extensions used for getline and getopt_long in bloom-create.c
CC = gcc
CFLAGS = -std=gnu99 \
-pedantic \
-Wall \
-Wextra \
-Werror \
-O3
VPATH = bloom-filter test
INC = bloom-filter
# NOTE: In compilation commands, libraries for linker must come after code
# using the libraries. See:
# https://stackoverflow.com/a/409402/1376127
#
# For including zlib when compiling with emscripten, use "USE_ZLIB" as-per:
# https://emscripten.org/docs/compiling/Building-Projects.html#emscripten-ports
LDLIBS = -lz
################################################################################
# Bundle extension for release (download and resize icons if necessary)
################################################################################
EXTENSION_FILES = manifest.json \
background.js \
background.html \
bloom.js \
bloom.wasm \
bloom-wrap.js \
add-latest.js \
options.html \
options.js \
icons
hackernews-button.zip: $(EXTENSION_FILES)
zip \
--recurse-paths \
"$@" \
$^
# NOTE: Requires ImageMagick
icons: ycombinator-logo.jpg
mkdir -p icons
convert -resize 16x16 $< icons/icon-16.png
convert -resize 32x32 $< icons/icon-32.png
convert -resize 48x48 $< icons/icon-48.png
convert -resize 64x64 $< icons/icon-64.png
convert -resize 96x96 $< icons/icon-96.png
ycombinator-logo.jpg:
curl \
--output "$@" \
"https://feeds.backtracks.fm/feeds/series/cb81757a-3054-11e7-89cf-0e1b887eb36a/images/main.jpg"
################################################################################
# Generate bloom filters from the command line
################################################################################
.PHONY: create
create: bin/bloom-create
bin/bloom-create: bin murmur.c bloom.c bloom-create.c
$(CC) \
$(CFLAGS) \
-I $(INC) \
$(filter %.c, $^) \
$(LDLIBS) \
-o $@
################################################################################
# Compile wrapper library to wasm and export for use in extension scripts
################################################################################
bloom.js: murmur.c bloom.c bloom-js-export.c
emcc $(filter %.c, $^) \
-I $(INC) \
-s WASM=1 \
-s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "writeArrayToMemory"]' \
-s ENVIRONMENT=web \
-s ALLOW_MEMORY_GROWTH=1 \
-s ASSERTIONS=1 \
-s USE_ZLIB=1 \
-o $@
################################################################################
# Test Bloom filter and Murmur3 implementations
################################################################################
.PHONY: test
test: bin/murmur-test bin/bloom-test bin/murmur-test.html bin/bloom-test.html
bin/murmur-test
bin/bloom-test
bin:
mkdir -p bin
bin/murmur-test: bin murmur.c murmur-test.c
$(CC) \
$(CFLAGS) \
-g \
-I $(INC) \
$(filter %.c, $^) \
-o $@
bin/murmur-test.html: bin murmur.c murmur-test.c test-template.html
emcc $(filter %.c, $^) \
-I $(INC) \
-s WASM=1 \
-s ASSERTIONS=1 \
-s ALLOW_MEMORY_GROWTH=1 \
-s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' \
--shell-file $(filter %.html, $^) \
-o $@
@echo "Start a local web server in this directory and go to /murmur-test.html"
bin/bloom-test: bin murmur.c bloom.c bloom-test.c
$(CC) \
$(CFLAGS) \
-g \
-I $(INC) \
$(filter %.c, $^) \
$(LDLIBS) \
-o $@
bin/bloom-test.html: bin murmur.c bloom.c bloom-test.c test-template.html
emcc $(filter %.c, $^) \
-I $(INC) \
-s WASM=1 \
-s ASSERTIONS=1 \
-s ALLOW_MEMORY_GROWTH=1 \
-s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' \
--shell-file $(filter %.html, $^) \
-s USE_ZLIB=1 \
-o $@
@echo "Start a local web server in this directory and go to /bloom-test.html"
################################################################################
# Additional targets
################################################################################
.PHONY: clean
clean:
rm -rf bin hackernews-button.zip