summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..74d549b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,27 @@
+CC := gcc
+CFLAGS := -Wall -D_USE_SOURCE
+
+DEBUG = false
+
+ifeq ($(strip $(DEBUG)),true)
+ CFLAGS += -g -DDEBUG
+endif
+
+PROGRAMS := inotail inotail-simple inotify-watchdir simpletail
+
+all: $(PROGRAMS)
+
+inotail: inotail.o
+
+inotail-simple: inotail-simple.o
+
+inotify-watchdir: inotify-watchdir.o
+
+simpletail: simpletail.o
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
+clean:
+ rm -f *.o
+ rm -f $(PROGRAMS)