diff options
Diffstat (limited to '')
-rw-r--r-- | doc/examples/timed/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/timed/Makefile b/doc/examples/timed/Makefile new file mode 100644 index 0000000..1b1cbd3 --- /dev/null +++ b/doc/examples/timed/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 + |