summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2021-11-14 01:27:15 +0100
committerJohnny Richard <johnny@johnnyrichard.com>2021-11-14 01:27:15 +0100
commite415b62a2e85f44e6ff285e08b16525605d2fc0f (patch)
treef31f2ad1c8309b4fc5c5bfde2172efdb10076db3 /Makefile
parentf584871064596b52efe12c2f8258f0839f6eb0fa (diff)
controller_t: Reduce memory usage using bitwise
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2433900..2a46725 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ $(TEST_DIR)/%: $(TEST_DIR)/%-test
test: lib/libmunit.so $(BUILD_DIR) $(TESTS)
lib/libmunit.so: $(LIB_DIR) third_party/munit/munit.c
- $(CC) -Wall -Werror -fpic -c third_party/munit/munit.c -shared -o lib/libmunit.so
+ $(CC) -Wall -fpic -c third_party/munit/munit.c -shared -o lib/libmunit.so
clean:
@rm -rf $(BUILD_DIR)