summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3ce80101b2503f199bfe4f1f5bb4c70d34beb44e (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
CC = gcc
NAME = tml
LIBS = -lncurses
PREFIX = /usr/local

$(NAME): draw.o read_cfg.o group.o entry.o
	$(CC) -o $(NAME) draw.o read_cfg.o group.o entry.o $(LIBS)

draw.o: draw.c read_cfg.h group.h entry.h
read_cfg.o: read_cfg.c group.o entry.o
group.o: group.c group.h entry.h
entry.o: entry.c entry.h read_cfg.h group.h

.PHONY: clean
clean:
	rm *.o $(NAME)

ifneq ($(OS),Windows_NT) 

.PHONY: install
install:
	mkdir -p $(DESTDIR)$(PREFIX)/bin
	cp -i $(NAME) $(DESTDIR)$(PREFIX)/bin/$(NAME)
	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
	cp -i docs/$(NAME).1.gz $(DESTDIR)$(PREFIX)/share/man/man1/$(NAME).1.gz
	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man5
	cp -i docs/$(NAME)-config.5.gz $(DESTDIR)$(PREFIX)/share/man/man5/$(NAME)-config.5.gz

.PHONY: install
uninstall:
	rm -f $(DESTDIR)$(PREFIX)/bin/$(NAME)
	rm -f $(DESTDIR)$(PREFIX)/share/man/man1/$(NAME).1.gz
	rm -f $(DESTDIR)$(PREFIX)/share/man/man5/$(NAME)-config.5.gz

endif