summaryrefslogtreecommitdiff
path: root/Makefile
blob: af0d8c986f243eeaf0c25229a42101f635936843 (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
36
37
38
39
40
41
VERSION = 0.1

# Paths
prefix	= $(HOME)
BINDIR	= $(prefix)/bin
DESTDIR	=

CC := gcc
CFLAGS := -g -Wall -D_USE_SOURCE

DEBUG = false

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

PROGRAMS := inotail inotail-old inotify-watchdir

all: inotail
inotail: inotail.o
inotail-old: inotail-old.o
inotify-watchdir: inotify-watchdir.o

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

install: inotail
	install -m 775 inotail $(DESTDIR)$(BINDIR)

cscope:
	cscope -b

release:
	git-tar-tree HEAD inotail-$(VERSION) | gzip -9v > inotail-$(VERSION).tar.gz
	git-tar-tree HEAD inotail-$(VERSION) | bzip2 -9v > inotail-$(VERSION).tar.bz2

clean:
	rm -f *.o
	rm -f $(PROGRAMS)
	rm -f cscope.out
	rm -f *.bz2 *.gz