Harald Welte has uploaded this change for review. (
https://gerrit.osmocom.org/14056
Change subject: ccid: Build with -Wall
......................................................................
ccid: Build with -Wall
Change-Id: I50cf270aefa4c9fd0d7ab27a9a6e4716a2e95416
---
M ccid/Makefile
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ccid-firmware
refs/changes/56/14056/1
diff --git a/ccid/Makefile b/ccid/Makefile
index a259c90..018b223 100644
--- a/ccid/Makefile
+++ b/ccid/Makefile
@@ -1,10 +1,10 @@
-
+CFLAGS=-Wall -g
ccid_descriptors: ccid_descriptors.o ccid_proto.o
- $(CC) -lasan -losmocore -laio -o $@ $^
+ $(CC) $(CFLAGS) -lasan -losmocore -laio -o $@ $^
%.o: %.c
- $(CC) -o $@ -c $^
+ $(CC) $(CFLAGS) -o $@ -c $^
clean:
rm ccid_descriptors *.o
--
To view, visit https://gerrit.osmocom.org/14056
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ccid-firmware
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I50cf270aefa4c9fd0d7ab27a9a6e4716a2e95416
Gerrit-Change-Number: 14056
Gerrit-PatchSet: 1
Gerrit-Owner: Harald Welte <[email protected]>