summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6992405..133e497 100644
--- a/Makefile
+++ b/Makefile
@@ -4,17 +4,17 @@ BINDIR = ${prefix}/bin
DESTDIR =
CC := gcc
-CFLAGS := -Wall -D_USE_SOURCE
-
INSTALL := install
+CFLAGS := -g -Wall -D_USE_SOURCE
+
DEBUG = false
ifeq ($(strip $(DEBUG)),true)
- CFLAGS += -g -DDEBUG
+ CFLAGS += -DDEBUG
endif
-PROGRAMS := inotail inotail-old inotify-watchdir #simpletail
+PROGRAMS := inotail #inotail-old inotify-watchdir simpletail
all: $(PROGRAMS)
@@ -24,7 +24,7 @@ inotail-old: inotail-old.o
inotify-watchdir: inotify-watchdir.o
-#simpletail: simpletail.o
+simpletail: simpletail.o
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@