From daac5c780296fbbf1005fedb45ae790d567b2dcd Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 6 Jul 2011 22:16:47 +0200 Subject: Initial commit --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..765a697 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +include config.mk + +src/randsleep: src/randsleep.c + ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $< + +install: src/randsleep + +uninstall: + rm -f src/randsleep + +clean: + rm -f src/randsleep + +.PHONY: all install uninstall clean -- cgit v1.2.3