annotate src/Makefile @ 14:e4d98cbf95eb

packet: add get value semantics
author Brett Gordon
date Tue, 13 Dec 2016 11:26:37 -0500
parents f8226a33698d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bef2801ac83e Initial checkin with reference implementation of core protocol
William Astle <lost@l-w.ca>
parents:
diff changeset
1 CFLAGS += -Wall
10
36c4cda4b6c4 Add extension support with the PINGPONG extension
William Astle <lost@l-w.ca>
parents: 0
diff changeset
2 LDLIBS += -ldl -rdynamic
0
bef2801ac83e Initial checkin with reference implementation of core protocol
William Astle <lost@l-w.ca>
parents:
diff changeset
3
12
f8226a33698d Add PACKET extension
Brett Gordon <beretta42@gmail.com>
parents: 10
diff changeset
4 all: lwwire lwwire-serial lwwire-pingpong.so lwwire-packet.so
10
36c4cda4b6c4 Add extension support with the PINGPONG extension
William Astle <lost@l-w.ca>
parents: 0
diff changeset
5
36c4cda4b6c4 Add extension support with the PINGPONG extension
William Astle <lost@l-w.ca>
parents: 0
diff changeset
6 %.so: %.c
36c4cda4b6c4 Add extension support with the PINGPONG extension
William Astle <lost@l-w.ca>
parents: 0
diff changeset
7 $(CC) $(CPPFLAGS) $(CFLAGS) -fPIC -shared -o $@ $<