summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7b8e0ed8640ee5b1e74ddaa08a17fb1d575ec31f (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
28
29
30
31
32
33
34
35
# Paths
prefix	= $(HOME)
BINDIR	= ${prefix}/bin
DESTDIR	=

CC := gcc
CFLAGS := -Wall -D_USE_SOURCE

INSTALL := install

DEBUG = false

ifeq ($(strip $(DEBUG)),true)
	CFLAGS  += -g -DDEBUG
endif

PROGRAMS := inotail inotify-watchdir simpletail

all: $(PROGRAMS)

inotail: inotail.o

inotify-watchdir: inotify-watchdir.o

simpletail: simpletail.o

%.o: %.c
	$(CC) $(CFLAGS) -c $< -o $@

install: simpletail
	${INSTALL} -m 775 simpletail ${DESTDIR}${BINDIR}

clean:
	rm -f *.o
	rm -f $(PROGRAMS)