From b40e6a468fc5851f8688c53c3cee68bd267bde04 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sat, 1 Jul 2006 16:57:56 +0200 Subject: Only build inotail on 'make all' --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') 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 $@ -- cgit v1.2.3-54-g00ecf