summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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