forked from pchero/asterisk-outbound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
126 lines (91 loc) · 5.44 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
#Makefile
# Created on: Nov 9, 2015
# Author: pchero
#### Compiler and tool definitions shared by all build targets #####
CC = gcc
UNAME := $(shell uname)
# -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
#BASICOPTS = -g -pthread -pipe -g3 -O6 -fPIC -DAST_MODULE=\"res_outbound\"
BASICOPTS = -Wall -g -pthread -pipe -g3 -O6 -fPIC -DAST_MODULE=\"res_outbound\" -DAST_MODULE_SELF_SYM=__res_outbound
CFLAGS = $(BASICOPTS)
PKGCONFIG="pkg-config"
OSLDLIBS=
# Define the target directories.
TARGETDIR_res_outbound.so=build
ifeq ($(UNAME), Linux)
SHAREDLIB_FLAGS_res_outbound.so = -shared -Xlinker -x -Wl,--hash-style=gnu -Wl,--as-needed -rdynamic
endif
ifeq ($(UNAME), Darwin)
PKGCONFIG=$(shell if [ "x$(HOMEBREW_PREFIX)" == "x" ];then echo "/usr/local/bin/pkg-config"; else echo "$(HOMEBREW_PREFIX)/bin/pkg-config"; fi)
# Link or archive
SHAREDLIB_FLAGS_res_outbound.so = -bundle -Xlinker -macosx_version_min -Xlinker 10.4 -Xlinker -undefined -Xlinker dynamic_lookup -force_flat_namespace
OSLDLIBS=/usr/lib/bundle1.o
endif
all: $(TARGETDIR_res_outbound.so)/res_outbound.so
## Target: res_outbound.so
CFLAGS_res_outbound.so = \
-I/usr/include/ \
-I/usr/local/include/
#CPPFLAGS_res_outbound.so =
LDLIBS_res_outbound.so = $(OSLDLIBS) -levent -lpthread -levent_pthreads
OBJS_res_outbound.so = \
$(TARGETDIR_res_outbound.so)/res_outbound.o \
$(TARGETDIR_res_outbound.so)/db_handler.o \
$(TARGETDIR_res_outbound.so)/event_handler.o \
$(TARGETDIR_res_outbound.so)/ami_handler.o \
$(TARGETDIR_res_outbound.so)/dialing_handler.o \
$(TARGETDIR_res_outbound.so)/cli_handler.o \
$(TARGETDIR_res_outbound.so)/campaign_handler.o \
$(TARGETDIR_res_outbound.so)/dl_handler.o \
$(TARGETDIR_res_outbound.so)/plan_handler.o \
$(TARGETDIR_res_outbound.so)/queue_handler.o \
$(TARGETDIR_res_outbound.so)/db_sqlite3_handler.o \
$(TARGETDIR_res_outbound.so)/destination_handler.o \
$(TARGETDIR_res_outbound.so)/utils.o \
$(TARGETDIR_res_outbound.so)/application_handler.o
# WARNING: do not run this directly, it should be run by the master Makefile
$(TARGETDIR_res_outbound.so)/res_outbound.so: $(TARGETDIR_res_outbound.so) $(OBJS_res_outbound.so) $(DEPLIBS_res_outbound.so)
$(LINK.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ $(OBJS_res_outbound.so) $(SHAREDLIB_FLAGS_res_outbound.so) $(LDLIBS_res_outbound.so)
# Compile source files into .o files
$(TARGETDIR_res_outbound.so)/res_outbound.o: $(TARGETDIR_res_outbound.so) src/res_outbound.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/res_outbound.c
$(TARGETDIR_res_outbound.so)/db_handler.o: $(TARGETDIR_res_outbound.so) src/db_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/db_handler.c
$(TARGETDIR_res_outbound.so)/event_handler.o: $(TARGETDIR_res_outbound.so) src/event_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/event_handler.c
$(TARGETDIR_res_outbound.so)/ami_handler.o: $(TARGETDIR_res_outbound.so) src/ami_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/ami_handler.c
$(TARGETDIR_res_outbound.so)/dialing_handler.o: $(TARGETDIR_res_outbound.so) src/dialing_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/dialing_handler.c
$(TARGETDIR_res_outbound.so)/cli_handler.o: $(TARGETDIR_res_outbound.so) src/cli_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/cli_handler.c
$(TARGETDIR_res_outbound.so)/campaign_handler.o: $(TARGETDIR_res_outbound.so) src/campaign_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/campaign_handler.c
$(TARGETDIR_res_outbound.so)/dl_handler.o: $(TARGETDIR_res_outbound.so) src/dl_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/dl_handler.c
$(TARGETDIR_res_outbound.so)/plan_handler.o: $(TARGETDIR_res_outbound.so) src/plan_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/plan_handler.c
$(TARGETDIR_res_outbound.so)/queue_handler.o: $(TARGETDIR_res_outbound.so) src/queue_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/queue_handler.c
$(TARGETDIR_res_outbound.so)/db_sqlite3_handler.o: $(TARGETDIR_res_outbound.so) src/db_sqlite3_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/db_sqlite3_handler.c
$(TARGETDIR_res_outbound.so)/destination_handler.o: $(TARGETDIR_res_outbound.so) src/destination_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/destination_handler.c
$(TARGETDIR_res_outbound.so)/utils.o: $(TARGETDIR_res_outbound.so) src/utils.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/utils.c
$(TARGETDIR_res_outbound.so)/application_handler.o: $(TARGETDIR_res_outbound.so) src/application_handler.c
$(COMPILE.c) $(CFLAGS_res_outbound.so) $(CPPFLAGS_res_outbound.so) -o $@ src/application_handler.c
#### Clean target deletes all generated files ####
clean:
rm -f \
$(TARGETDIR_res_outbound.so)/res_outbound.so \
$(TARGETDIR_res_outbound.so)/*.o
rm -f -r $(TARGETDIR_res_outbound.so)
install:
mv $(TARGETDIR_res_outbound.so)/res_outbound.so /usr/lib/asterisk/modules/
# Create the target directory (if needed)
$(TARGETDIR_res_outbound.so):
mkdir -p $(TARGETDIR_res_outbound.so)
# Enable dependency checking
#.KEEP_STATE:
#.KEEP_STATE_FILE:.make.state.GNU-amd64-Linux