summaryrefslogtreecommitdiff
path: root/Makefile
blob: e279213a5274012d7406969c96b3f05d7cf4910a (about) (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
include config.mk

.POSIX:
.SUFFIXES: .c .o

HDR = \
	arg.h \
	config.h \
	nodes.h \
	readpassphrase.h \
	util.h

LIB = \
	eprintf.o \
	readpassphrase.o

SRC = \
	ratox.c

OBJ = $(SRC:.c=.o) $(LIB)
BIN = $(SRC:.c=)
MAN = $(SRC:.c=.1)

all: $(BIN)

$(BIN): $(OBJ) util.a
$(OBJ): $(HDR) config.mk

config.h:
	@echo creating $@ from config.def.h
	@cp config.def.h $@

nodes.h:
	@echo creating $@ with nodegen
	@./nodegen >$@

.o:
	@echo LD $@
	@$(LD) -o $@ $< util.a $(LDFLAGS) $(LDLIBS)

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

util.a: $(LIB)
	@echo AR $@
	@$(AR) -r -c $@ $(LIB)
	@ranlib $@

install: all
	@echo installing executable to $(DESTDIR)$(PREFIX)/bin
	@mkdir -p $(DESTDIR)$(PREFIX)/bin
	@cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
	@chmod 755 $(DESTDIR)$(PREFIX)/bin/$(BIN)
	@echo installing manual page to $(DESTDIR)$(MANPREFIX)/man1
	@mkdir -p $(DESTDIR)$(MANPREFIX)/man1
	@cp -f ratox.1 $(DESTDIR)$(MANPREFIX)/man1

uninstall:
	@echo removing executable from $(DESTDIR)$(PREFIX)/bin
	@rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
	@echo removing manual page from $(DESTDIR)$(MANPREFIX)/man1
	@rm $(DESTDIR)$(MANPREFIX)/man1/ratox.1

clean:
	@echo cleaning
	@rm -f $(BIN) $(OBJ) $(LIB) util.a

.PHONY: all binlib bin install uninstall clean