forked from confluentinc/librdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
58 lines (39 loc) · 1.2 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
PKGNAME= librdkafka
LIBNAME= librdkafka++
LIBVER= 1
CXXSRCS= RdKafka.cpp ConfImpl.cpp HandleImpl.cpp \
ConsumerImpl.cpp ProducerImpl.cpp KafkaConsumerImpl.cpp \
TopicImpl.cpp TopicPartitionImpl.cpp MessageImpl.cpp \
QueueImpl.cpp MetadataImpl.cpp
HDRS= rdkafkacpp.h
OBJS= $(CXXSRCS:%.cpp=%.o)
all: lib check
include ../mklove/Makefile.base
# No linker script/symbol hiding for C++ library
WITH_LDS=n
# OSX and Cygwin requires linking required libraries
ifeq ($(_UNAME_S),Darwin)
FWD_LINKING_REQ=y
endif
ifeq ($(_UNAME_S),AIX)
FWD_LINKING_REQ=y
endif
ifeq ($(shell uname -o 2>/dev/null),Cygwin)
FWD_LINKING_REQ=y
endif
# Ignore previously defined library dependencies for the C library,
# we'll get those dependencies through the C library linkage.
LIBS := -L../src -lrdkafka -lstdc++
CHECK_FILES+= $(LIBFILENAME) $(LIBNAME).a
file-check: lib
check: file-check
install: lib-install
clean: lib-clean
ifeq ($(WITH_LDS),y)
# Enable linker script if supported by platform
LIB_LDFLAGS+= $(LDFLAG_LINKERSCRIPT)$(LIBNAME).lds
endif
$(LIBNAME).lds: $(HDRS)
@(printf "$(MKL_YELLOW)Generating linker script $@ from $(HDRS)$(MKL_CLR_RESET)\n" ; \
cat ../src/rdkafka.h | ../lds-gen.py > $@)
-include $(DEPS)