forked from OpenKMIP/libkmip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
382 lines (286 loc) · 10.4 KB
/
Makefile
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
##
## Build libkmip for Versity development
##
# --------------------------------------------------------------------------
# Determine if the build operating system is supported
FULL_RELEASE = $(shell /bin/cat /etc/redhat-release | \
/bin/sed -e 's/^.* release \([.0-9]\+\) .*/\1/')
MAJOR_RELEASE = $(shell echo $(FULL_RELEASE) | /bin/cut -d "." -f 1)
ifeq ($(MAJOR_RELEASE), 8)
SUPPORTED_RELEASE = 1
else ifeq ($(MAJOR_RELEASE), 7)
SUPPORTED_RELEASE = 1
else ifeq ($(MAJOR_RELEASE), 6)
SUPPORTED_RELEASE = 0
else ifeq ($(MAJOR_RELEASE), 31)
SUPPORTED_RELEASE = 1
else ifeq ($(MAJOR_RELEASE), 32)
SUPPORTED_RELEASE = 1
else
$(error Unsupported release: $(FULL_RELEASE))
endif
# --------------------------------------------------------------------------
# Set libkmip version number using git tags and optional developer PKG_PATCH
# environment variable
GIT-VERSION-FILE: .FORCE
./GIT-VERSION-GEN
-include GIT-VERSION-FILE
LIBKMIP_VER_MAJOR ?= $(wordlist 1,1, $(subst -, ,$(subst ., ,$(VERSION))))
LIBKMIP_VER_MINOR ?= $(wordlist 2,2, $(subst -, ,$(subst ., ,$(VERSION))))
LIBKMIP_VER := $(LIBKMIP_VER_MAJOR).$(LIBKMIP_VER_MINOR)
# --------------------------------------------------------------------------
# BUILD directory
ifndef BUILD
ifdef DEBUG
BUILD := build-debug
else
BUILD := build
endif
endif
$(BUILD):
mkdir -p $(BUILD)
# --------------------------------------------------------------------------
# DESTDIR directory
ifndef DESTDIR
DESTDIR := /usr
endif
# --------------------------------------------------------------------------
# LIBDIR directory
ifndef LIBDIR
LIBDIR := $(DESTDIR)/lib
endif
# --------------------------------------------------------------------------
# Library dependencies for libkmip
ifndef OPENSSL_LIBS
OPENSSL_LIBS := -lssl -lcrypto
endif
# --------------------------------------------------------------------------
# These CFLAGS assume a GNU compiler. For other compilers, write a script
# which converts these arguments into their equivalent for that particular
# compiler.
CFLAGS = \
-pedantic \
-Wall \
-Wextra \
-D__STRICT_ANSI__ \
-D_ISOC99_SOURCE \
-D_POSIX_C_SOURCE=200112L
ifeq ($(SUPPORTED_RELEASE), 1)
CFLAGS += -std=c11
endif
ifdef DEBUG
CFLAGS += -Og -g3
else
CFLAGS += -O3
endif
LDFLAGS = $(OPENSSL_LIBS)
AR = ar
ARFLAGS = csrv
# --------------------------------------------------------------------------
# Default targets are everything
.PHONY: all
all: exported tests demos
# --------------------------------------------------------------------------
# Exported targets are the library and utility programs
.PHONY: exported
exported: libkmip headers kmip-get
# --------------------------------------------------------------------------
# Install target
.PHONY: install
install: exported
@echo Installing executable: $(DESTDIR)/bin/kmip-get
install -Dps -m u+rwx,go+rx \
$(BUILD)/bin/kmip-get \
$(DESTDIR)/bin/kmip-get
@echo Installing shared library: $(LIBDIR)/libkmip.so.$(LIBKMIP_VER)
install -Dps -m u+rw,go+r \
$(BUILD)/lib/libkmip.so.$(LIBKMIP_VER_MAJOR) \
$(LIBDIR)/libkmip.so.$(LIBKMIP_VER)
@echo Linking shared library: $(LIBDIR)/libkmip.so.$(LIBKMIP_VER_MAJOR)
ln -sf libkmip.so.$(LIBKMIP_VER) \
$(LIBDIR)/libkmip.so.$(LIBKMIP_VER_MAJOR)
@echo Linking shared library: $(LIBDIR)/libkmip.so
ln -sf libkmip.so.$(LIBKMIP_VER_MAJOR) $(LIBDIR)/libkmip.so
@echo Installing static library: $(LIBDIR)/libkmip.a
install -Dp -m u+rw,go+r $(BUILD)/lib/libkmip.a \
$(LIBDIR)/libkmip.a
@echo Installing header: $(DESTDIR)/include/kmip.h
install -Dp -m u+rw,go+r $(BUILD)/include/kmip.h \
$(DESTDIR)/include/kmip.h
@echo Installing header: $(DESTDIR)/include/kmip_bio.h
install -Dp -m u+rw,go+r $(BUILD)/include/kmip_bio.h \
$(DESTDIR)/include/kmip_bio.h
@echo Installing header: $(DESTDIR)/include/kmip_memset.h
install -Dp -m u+rw,go+r $(BUILD)/include/kmip_memset.h \
$(DESTDIR)/include/kmip_memset.h
# --------------------------------------------------------------------------
# Uninstall target
.PHONY: uninstall
uninstall:
@echo Uninstalled files: ...
rm -f \
$(DESTDIR)/bin/kmip-get \
$(DESTDIR)/include/kmip.h \
$(DESTDIR)/include/kmip_bio.h \
$(DESTDIR)/include/kmip_memset.h \
$(DESTDIR)/lib/libkmip.a \
$(DESTDIR)/lib/libkmip.so \
$(DESTDIR)/lib/libkmip.so.$(LIBKMIP_VER_MAJOR) \
$(DESTDIR)/lib/libkmip.so.$(LIBKMIP_VER)
# --------------------------------------------------------------------------
# Compile target patterns
$(BUILD)/obj/%.o: %.c
@echo Compiling object: $@
@mkdir -p $(dir $(BUILD)/dep/$<)
@$(CC) $(CFLAGS) -M -MG -MQ $@ -o $(BUILD)/dep/$(<:%.c=%.d) -c $<
@mkdir -p $(dir $@)
$(CC) $(CFLAGS) -o $@ -c $<
$(BUILD)/obj/%.lo: %.c
@echo Compiling dynamic object: $@
@mkdir -p $(dir $(BUILD)/dep/$<)
@$(CC) $(CFLAGS) -M -MG -MQ $@ -o $(BUILD)/dep/$(<:%.c=%.dd) -c $<
@mkdir -p $(dir $@)
$(CC) $(CFLAGS) -fpic -fPIC -o $@ -c $<
$(BUILD)/include/%.h: %.h
@echo Linking header: $@
@mkdir -p $(dir $@)
ln -sf $(abspath $<) $@
# --------------------------------------------------------------------------
# libkmip library targets
ifeq ($(SUPPORTED_RELEASE), 1)
LIBKMIP_SOURCES := kmip.c kmip_bio.c kmip_memset.c
else
LIBKMIP_SOURCES := kmip_dummy.c
endif
LIBKMIP_SHARED = $(BUILD)/lib/libkmip.so.$(LIBKMIP_VER_MAJOR)
LIBKMIP_STATIC = $(BUILD)/lib/libkmip.a
.PHONY: libkmip
libkmip: $(LIBKMIP_SHARED) $(LIBKMIP_STATIC)
$(LIBKMIP_SHARED): $(LIBKMIP_SOURCES:%.c=$(BUILD)/obj/%.lo)
@echo Building shared library: $@
@mkdir -p $(dir $@)
$(CC) -shared -Wl,-soname,libkmip.so.$(LIBKMIP_VER_MAJOR) -o $@ $^ $(LDFLAGS)
$(LIBKMIP_STATIC): $(LIBKMIP_SOURCES:%.c=$(BUILD)/obj/%.o)
@echo Building static library: $@
@mkdir -p $(dir $@)
$(AR) $(ARFLAGS) $@ $^
# --------------------------------------------------------------------------
# KMIP server validation target
KMIPGET_SOURCES := kmip-get.c
.PHONY: kmip-get
kmip-get: $(BUILD)/bin/kmip-get
$(BUILD)/bin/kmip-get: $(BUILD)/obj/kmip-get.o $(LIBKMIP_STATIC)
@echo Building executable: $@
@mkdir -p $(dir $@)
$(CC) -o $@ $^ $(LDFLAGS)
# --------------------------------------------------------------------------
# libkmip header targets
LIBKMIP_HEADERS = kmip.h kmip_bio.h kmip_memset.h
.PHONY: headers
headers: $(LIBKMIP_HEADERS:%.h=$(BUILD)/include/%.h)
# --------------------------------------------------------------------------
# Test targets
.PHONY: tests
tests: $(BUILD)/bin/tests
$(BUILD)/bin/tests: $(BUILD)/obj/tests.o $(LIBKMIP_STATIC)
@echo Building executable: $@
@mkdir -p $(dir $@)
$(CC) -o $@ $^ $(LDFLAGS)
# --------------------------------------------------------------------------
# Demonstration targets
.PHONY: demos
demos: $(BUILD)/bin/demo_create $(BUILD)/bin/demo_get $(BUILD)/bin/demo_destroy
$(BUILD)/bin/demo_create: $(BUILD)/obj/demo_create.o $(LIBKMIP_STATIC)
@echo Building executable: $@
@mkdir -p $(dir $@)
$(CC) -o $@ $^ $(LDFLAGS)
$(BUILD)/bin/demo_get: $(BUILD)/obj/demo_get.o $(LIBKMIP_STATIC)
@echo Building executable: $@
@mkdir -p $(dir $@)
$(CC) -o $@ $^ $(LDFLAGS)
$(BUILD)/bin/demo_destroy: $(BUILD)/obj/demo_destroy.o $(LIBKMIP_STATIC)
@echo Building executable: $@
@mkdir -p $(dir $@)
$(CC) -o $@ $^ $(LDFLAGS)
# --------------------------------------------------------------------------
# Clean target
.PHONY: clean
clean:
@echo Cleaning: $(BUILD)
rm -rf $(BUILD)
.PHONY: distclean
distclean:
@echo Cleaning: $(BUILD)
rm -rf $(BUILD)
# --------------------------------------------------------------------------
# Clean dependencies target
.PHONY: cleandeps
cleandeps:
@echo Cleaning dependencies: $(BUILD)/dep
rm -rf $(BUILD)/dep
# --------------------------------------------------------------------------
# Dependencies
ALL_SOURCES := $(LIBKMIP_SOURCES) $(KMIPGET_SOURCES)
$(foreach i, $(ALL_SOURCES), $(eval -include $(BUILD)/dep/$(i:%.c=%.d)))
$(foreach i, $(ALL_SOURCES), $(eval -include $(BUILD)/dep/$(i:%.c=%.dd)))
# --------------------------------------------------------------------------
# tar package target
GIT_TARNAME = libkmip-$(FULL_VERSION)
GIT_TARPATH = $(BUILD)/$(GIT_TARNAME)
dist: $(BUILD) libkmip.spec
git archive --format=tar --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARPATH).tar
mkdir -p $(GIT_TARNAME)
cp GIT-VERSION-FILE $(GIT_TARNAME)
cp $(BUILD)/libkmip.spec $(GIT_TARNAME)
tar -rf $(GIT_TARPATH).tar $(GIT_TARNAME)/GIT-VERSION-FILE $(GIT_TARNAME)/libkmip.spec
rm -r $(GIT_TARNAME)
gzip -f -9 $(GIT_TARPATH).tar
# --------------------------------------------------------------------------
# Redhat RPM target --- RPM releases can't have "-"
RPM_RELEASE := $(shell echo $(RELEASE) | tr '-' '.')
%.spec: %.spec.in .FORCE $(BUILD)
sed -e 's/@@VERSION@@/$(VERSION)/g' \
-e 's/@@TAR_NAME@@/$(GIT_TARNAME)/g' \
-e 's/@@RELEASE@@/$(RPM_RELEASE)/g' < $< > $@+
mv $@+ $(BUILD)/$@
RPM_DIR = $(BUILD)/rpmbuild
export RESULT_DIR = $(PWD)/pkg-linux/libkmip-$(FULL_VERSION)
rpm: dist
@mkdir -p $(RPM_DIR)
env RPM_DIR=$(RPM_DIR) bash ./pkg-linux/mock_rpmbuild.sh $(GIT_TARPATH).tar.gz $(BUILD)/libkmip.spec
relrpm: dist
@mkdir -p $(RPM_DIR)
env RPM_DIR=$(RPM_DIR) REL_BUILD="yes" bash ./pkg-linux/mock_rpmbuild.sh $(GIT_TARPATH).tar.gz $(BUILD)/libkmip.spec
devrpm: dist
@mkdir -p $(RPM_DIR)
env RPM_DIR=$(RPM_DIR) bash ./pkg-linux/rpmbuild.sh $(GIT_TARPATH).tar.gz $(BUILD)/libkmip.spec
# --------------------------------------------------------------------------
# Print macros to help in debugging
macros:
@echo "BUILD: $(BUILD)"
@echo "DESTDIR: $(DESTDIR)"
@echo "LIBDIR: $(LIBDIR)"
@echo ""
@echo "FULL_RELEASE: $(FULL_RELEASE)"
@echo "MAJOR_RELEASE: $(MAJOR_RELEASE)"
@echo "SUPPORTED_RELEASE: $(SUPPORTED_RELEASE)"
@echo ""
@echo "GIT_TARNAME: $(GIT_TARNAME)"
@echo "GIT_TARPATH: $(GIT_TARPATH)"
@echo ""
@echo "LIBKMIP_HEADERS: $(LIBKMIP_HEADERS)"
@echo "LIBKMIP_SOURCES: $(LIBKMIP_SOURCES)"
@echo "LIBKMIP_SHARED: $(LIBKMIP_SHARED)"
@echo "LIBKMIP_STATIC: $(LIBKMIP_STATIC)"
@echo "KMIPGET_SOURCES: $(KMIPGET_SOURCES)"
@echo ""
@echo "RPM_DIR: $(RPM_DIR)"
@echo "RPM_RELEASE: $(RPM_RELEASE)"
@echo ""
@echo "VERSION: $(VERSION)"
@echo "FULL_VERSION: $(FULL_VERSION)"
@echo "LIBKMIP_VER: $(LIBKMIP_VER)"
@echo "LIBKMIP_VER_MAJOR: $(LIBKMIP_VER_MAJOR)"
@echo "LIBKMIP_VER_MINOR: $(LIBKMIP_VER_MINOR)"
.PHONY: .FORCE
.FORCE: