aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/nonblocking/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-05-15 15:04:25 +0200
committerMattias Andrée <maandree@operamail.com>2015-05-15 15:04:25 +0200
commit40341a0eec50588f574199a3ee213dbb97b576e5 (patch)
treedcf36c75385bb593086c10c7cf0a502d6f5311c8 /doc/examples/nonblocking/Makefile
parentupdate examples (diff)
downloadbus-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/Makefile13
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
+