80 lines
2.5 KiB
Makefile
80 lines
2.5 KiB
Makefile
|
|
||
|
OBJS = sparsemap.o
|
||
|
STATIC_LIB = libsparsemap.a
|
||
|
SHARED_LIB = libsparsemap.so
|
||
|
|
||
|
#CFLAGS = -Wall -Wextra -Wpedantic -Of -std=c11 -Iinclude/ -fPIC
|
||
|
#CFLAGS = -Wall -Wextra -Wpedantic -Og -g -std=c11 -Iinclude/ -fPIC
|
||
|
CFLAGS = -DSPARSEMAP_DIAGNOSTIC -DSPARSEMAP_ASSERT -Wall -Wextra -Wpedantic -Og -g -std=c11 -Iinclude/ -fPIC
|
||
|
#CFLAGS = -Wall -Wextra -Wpedantic -Og -g -fsanitize=address,leak,object-size,pointer-compare,pointer-subtract,null,return,bounds,pointer-overflow,undefined -fsanitize-address-use-after-scope -std=c99 -Iinclude/ -fPIC
|
||
|
#CFLAGS = -Wall -Wextra -Wpedantic -Og -g -fsanitize=all -fhardened -std=c99 -Iinclude/ -fPIC
|
||
|
|
||
|
TEST_FLAGS = -Wall -Wextra -Wpedantic -Og -g -std=c99 -Iinclude/ -Itests/ -fPIC
|
||
|
|
||
|
TESTS = tests/test
|
||
|
TEST_OBJS = tests/test.o tests/munit.o tests/common.o
|
||
|
EXAMPLES = examples/ex_1 examples/ex_2 examples/ex_3 examples/ex_4
|
||
|
|
||
|
.PHONY: all shared static clean test examples mls
|
||
|
|
||
|
all: static shared
|
||
|
|
||
|
static: $(STATIC_LIB)
|
||
|
|
||
|
shared: $(SHARED_LIB)
|
||
|
|
||
|
$(STATIC_LIB): $(OBJS)
|
||
|
ar rcs $(STATIC_LIB) $?
|
||
|
|
||
|
$(SHARED_LIB): $(OBJS)
|
||
|
$(CC) $(CFLAGS) -o $@ $? -shared
|
||
|
|
||
|
examples: $(STATIC_LIB) $(EXAMPLES) examples/common.o
|
||
|
|
||
|
mls: examples/mls
|
||
|
|
||
|
test: $(TESTS)
|
||
|
|
||
|
check: test
|
||
|
env ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=verbosity=1:log_threads=1 ./tests/test
|
||
|
|
||
|
tests/test: $(TEST_OBJS) $(STATIC_LIB)
|
||
|
$(CC) $^ -o $@ $(TEST_FLAGS)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS)
|
||
|
rm -f examples/main.c
|
||
|
rm -f $(STATIC_LIB) $(SHARED_LIB)
|
||
|
rm -f $(TESTS) tests/*.o
|
||
|
rm -f $(EXAMPLES) examples/*.o
|
||
|
|
||
|
format:
|
||
|
clang-format -i src/sparsemap.c include/sparsemap.h examples/ex_*.c tests/test.c tests/common.c
|
||
|
# clang-format -i include/*.h src/*.c tests/*.c tests/*.h examples/*.c
|
||
|
|
||
|
%.o: src/%.c
|
||
|
$(CC) $(CFLAGS) -c -o $@ $^
|
||
|
|
||
|
tests/%.o: tests/%.c
|
||
|
$(CC) $(CFLAGS) -c -o $@ $^
|
||
|
|
||
|
examples/%.o: examples/%.c
|
||
|
$(CC) $(CFLAGS) -c -o $@ $^
|
||
|
|
||
|
examples/common.o: tests/common.c
|
||
|
$(CC) $(CFLAGS) -c -o $@ $^
|
||
|
|
||
|
examples/ex_1: examples/common.o examples/ex_1.o $(STATIC_LIB)
|
||
|
$(CC) $^ -o $@ $(CFLAGS) $(TEST_FLAGS)
|
||
|
|
||
|
examples/ex_2: examples/common.o examples/ex_2.o $(STATIC_LIB)
|
||
|
$(CC) $^ -o $@ $(CFLAGS) $(TEST_FLAGS)
|
||
|
|
||
|
examples/ex_3: examples/common.o examples/ex_3.o $(STATIC_LIB)
|
||
|
$(CC) $^ -o $@ $(CFLAGS) $(TEST_FLAGS)
|
||
|
|
||
|
examples/ex_4: examples/common.o examples/ex_4.o $(STATIC_LIB)
|
||
|
$(CC) $^ -o $@ $(CFLAGS) $(TEST_FLAGS)
|
||
|
|
||
|
# cp src/sparsemap.c /tmp && clang-tidy src/sparsemap.c -fix -fix-errors -checks="readability-braces-around-statements" -- -DDEBUG -DSPARSEMAP_DIAGNOSTIC -DSPARSEMAP_ASSERT -Wall -Wextra -Wpedantic -Og -g -std=c99 -Iinclude/ -fPIC
|