summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@xenon.tklauser.home>2006-05-11 15:31:33 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2006-05-11 15:31:33 +0200
commit818bf75711938460f43815cfcca8dab16a93ac97 (patch)
tree8ead1222ba3f11eeda6f44dea46de6d6783f4ff6 /Makefile
parent1ad0b7abeb5ac5cd310f5c9ad32d3e1af42bdc78 (diff)
simpletail is the new inotail
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
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