From 135b557f6d14c3ce4d60419602d8ca92316f9a71 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 13 Mar 2006 18:16:41 +0100 Subject: Initial import --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3-54-g00ecf