blob: 74d549b891a0335a6bce930706391c5941847569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
CC := gcc
CFLAGS := -Wall -D_USE_SOURCE
DEBUG = false
ifeq ($(strip $(DEBUG)),true)
CFLAGS += -g -DDEBUG
endif
PROGRAMS := inotail inotail-simple inotify-watchdir simpletail
all: $(PROGRAMS)
inotail: inotail.o
inotail-simple: inotail-simple.o
inotify-watchdir: inotify-watchdir.o
simpletail: simpletail.o
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f *.o
rm -f $(PROGRAMS)
|