diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-05-15 15:04:25 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-05-15 15:04:25 +0200 |
commit | 40341a0eec50588f574199a3ee213dbb97b576e5 (patch) | |
tree | dcf36c75385bb593086c10c7cf0a502d6f5311c8 /doc/examples/nonblocking/Makefile | |
parent | update examples (diff) | |
download | bus-40341a0eec50588f574199a3ee213dbb97b576e5.tar.gz bus-40341a0eec50588f574199a3ee213dbb97b576e5.tar.bz2 bus-40341a0eec50588f574199a3ee213dbb97b576e5.tar.xz |
fix nowait for polling + add nonblocking example
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | doc/examples/nonblocking/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/nonblocking/Makefile b/doc/examples/nonblocking/Makefile new file mode 100644 index 0000000..1b1cbd3 --- /dev/null +++ b/doc/examples/nonblocking/Makefile @@ -0,0 +1,13 @@ +COMMANDS = init cleanup write poll + +all: ${COMMANDS} + +%: %.c + ${CC} -Wall -Wextra -pedantic -std=c99 -lbus -o $@ $< + +clean: + -rm ${COMMANDS} + + +.PHONY: all clean + |