From 818bf75711938460f43815cfcca8dab16a93ac97 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 11 May 2006 15:31:33 +0200 Subject: simpletail is the new inotail --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7b8e0ed..6992405 100644 --- a/Makefile +++ b/Makefile @@ -14,21 +14,23 @@ ifeq ($(strip $(DEBUG)),true) CFLAGS += -g -DDEBUG endif -PROGRAMS := inotail inotify-watchdir simpletail +PROGRAMS := inotail inotail-old inotify-watchdir #simpletail all: $(PROGRAMS) inotail: inotail.o +inotail-old: inotail-old.o + inotify-watchdir: inotify-watchdir.o -simpletail: simpletail.o +#simpletail: simpletail.o %.o: %.c $(CC) $(CFLAGS) -c $< -o $@ -install: simpletail - ${INSTALL} -m 775 simpletail ${DESTDIR}${BINDIR} +install: inotail + ${INSTALL} -m 775 inotail ${DESTDIR}${BINDIR} clean: rm -f *.o -- cgit v1.2.3-54-g00ecf