blob: 14be91d4f04832e4f9445fbab672bdc49d278bae (
plain) (
blame)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
.NONPOSIX:
CONFIGFILE = config.mk
LIB_MAJOR = 1
LIB_MINOR = 0
LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
include $(CONFIGFILE)
HDR =\
libsha2.h\
common.h
OBJ =\
algorithm_output_size.o\
behex_lower.o\
behex_upper.o\
digest.o\
hmac_digest.o\
hmac_init.o\
hmac_marshal.o\
hmac_state_output_size.o\
hmac_unmarshal.o\
hmac_update.o\
init.o\
marshal.o\
process.o\
state_output_size.o\
sum_fd.o\
unhex.o\
unmarshal.o\
update.o\
MAN0 =\
libsha2.h.0
MAN3 =\
libsha2_algorithm_output_size.3\
libsha2_behex_lower.3\
libsha2_behex_upper.3\
libsha2_digest.3\
libsha2_hmac_digest.3\
libsha2_hmac_init.3\
libsha2_hmac_marshal.3\
libsha2_hmac_state_output_size.3\
libsha2_hmac_unmarshal.3\
libsha2_hmac_update.3\
libsha2_init.3\
libsha2_marshal.3\
libsha2_state_output_size.3\
libsha2_sum_fd.3\
libsha2_unhex.3\
libsha2_unmarshal.3\
libsha2_update.3
all: libsha2.a libsha2.$(LIBEXT) test
$(OBJ): $(@:.o=.c) $(HDR)
$(OBJ:.o=.lo): $(@:.lo=.c) $(HDR)
.c.o:
$(CC) -c -o $@ $< $(CFLAGS)
.c.lo:
$(CC) -fPIC -c -o $@ $< $(CFLAGS)
test: test.o libsha2.a
$(CC) -o $@ test.o libsha2.a $(LDFLAGS)
libsha2.$(LIBEXT): $(OBJ:.o=.lo)
$(CC) $(LIBFLAGS) -o $@ $(OBJ) $(LDFLAGS)
libsha2.a: $(OBJ)
-rm -f -- $@
$(AR) rc $@ $(OBJ)
$(AR) -s $@
check: test
./test
install:
mkdir -p -- "$(DESTDIR)$(PREFIX)/lib"
mkdir -p -- "$(DESTDIR)$(PREFIX)/include"
mkdir -p -- "$(DESTDIR)$(PREFIX)/share/licenses/libsha2"
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man0"
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man3"
cp -- libsha2.a "$(DESTDIR)$(PREFIX)/lib"
cp -- libsha2.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT).$(LIB_MAJOR).$(LIB_MINOR)"
ln -sf -- "libsha2.$(LIBEXT).$(LIB_MAJOR).$(LIB_MINOR)" "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT).$(LIB_MAJOR)"
ln -sf -- "libsha2.$(LIBEXT).$(LIB_MAJOR)" "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT)"
cp -- libsha2.h "$(DESTDIR)$(PREFIX)/include"
cp -- $(MAN0) "$(DESTDIR)$(MANPREFIX)/man0"
cp -- $(MAN3) "$(DESTDIR)$(MANPREFIX)/man3"
cp -- LICENSE "$(DESTDIR)$(PREFIX)/share/licenses/libsha2"
uninstall:
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libsha2.a"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT).$(LIB_MAJOR)"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT).$(LIB_MAJOR).$(LIB_MINOR)"
-rm -f -- "$(DESTDIR)$(PREFIX)/include/libsha2.h"
-cd -- "$(DESTDIR)$(MANPREFIX)/man0" && rm -f -- $(MAN0)
-cd -- "$(DESTDIR)$(MANPREFIX)/man3" && rm -f -- $(MAN3)
-rm -rf -- "$(DESTDIR)$(PREFIX)/share/licenses/libsha2"
clean:
-rm -f -- *.o *.lo *.su *.a *.so
.SUFFIXES:
.SUFFIXES: .lo .o .c
.PHONY: all check install uninstall clean
|