Harald Welte has submitted this change and it was merged. (
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(-)
Approvals:
Jenkins Builder: Verified
Harald Welte: Looks good to me, approved
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: merged
Gerrit-Change-Id: I50cf270aefa4c9fd0d7ab27a9a6e4716a2e95416
Gerrit-Change-Number: 14056
Gerrit-PatchSet: 1
Gerrit-Owner: Harald Welte <[email protected]>
Gerrit-Reviewer: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder (1000002)