-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.in
130 lines (98 loc) · 3.66 KB
/
Makefile.in
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
PROJM = chan_quectel.so
PROJS = chan_quectels.so
chan_quectelm_so_OBJS = app.o at_command.o at_parse.o at_queue.o at_read.o at_response.o \
chan_quectel.o channel.o char_conv.o cli.o helpers.o manager.o \
memmem.o ringbuffer.o cpvt.o dc_config.o pdu.o mixbuffer.o pdiscovery.o error.o smsdb.o
chan_quectels_so_OBJS = single.o
test1_OBJS = test/test1.o ringbuffer.o mixbuffer.o error.o
gen_OBJS = test/gen.o char_conv.o pdu.o error.o
parse_OBJS = test/parse.o at_parse.o char_conv.o pdu.o error.o
discovery_OBJS = tools/discovery.o tools/tty.o
SOURCES = app.c at_command.c at_parse.c at_queue.c at_read.c at_response.c \
chan_quectel.c channel.c char_conv.c cli.c cpvt.c dc_config.c helpers.c \
manager.c memmem.c ringbuffer.c single.c pdu.c mixbuffer.c pdiscovery.c \
error.c smsdb.c
test_SOURCES = test/test1.c test/parse.c test/gen.c
tools_SOURCES = tools/discovery.c tools/tty.c
HEADERS = app.h at_command.h at_parse.h at_queue.h at_read.h at_response.h \
chan_quectel.h channel.h char_conv.h cli.h cpvt.h dc_config.h export.h \
helpers.h manager.h memmem.h ringbuffer.h pdu.h mixbuffer.h pdiscovery.h \
mutils.h error.h smsdb.h
tools_HEADERS = tools/tty.h
EXTRA_DIST = BUGS COPYRIGHT.txt LICENSE.txt README.txt TODO.txt INSTALL \
Makefile.in config.h.in configure.ac stamp-h.in etc contrib
BUILD_TOOLS = configure config.sub install-sh missing config.guess
CC = @CC@
LD = @CC@
STRIP = @STRIP@
RM = @RM@ -fr
INSTALL = @INSTALL@
CHMOD = chmod
# -DAST_MODULE=\"$(PROJM)\" -D_THREAD_SAFE
CFLAGS = @CFLAGS@ -I$(srcdir) -std=gnu99 -DAST_MODULE_SELF_SYM=__internal_chan_quectel_self \
@CPPFLAGS@ @DEFS@ @AC_CFLAGS@
LDFLAGS = @LDFLAGS@
SOLINK = @SOLINK@
LIBS = @LIBS@ -lasound
DISTNAME= @PACKAGE_TARNAME@-@[email protected]@PACKAGE_REVISION@
srcdir = @srcdir@
VPATH = @srcdir@
all: @TARGET@
install: all
$(STRIP) $(PROJM)
ifneq (@DESTDIR@,)
$(INSTALL) -m 644 $(PROJM) @DESTDIR@
else
@echo >&2
@echo "*** Asterisk modules directory was not auto-detected." >&2
@echo "*** Please copy $(PROJM) to the appropriate modules directory yourself." >&2
@echo >&2
@false
endif
$(PROJM): $(chan_quectelm_so_OBJS) Makefile
$(LD) $(LDFLAGS) $(SOLINK) -o $@ $(chan_quectelm_so_OBJS) $(LIBS)
$(PROJS): $(chan_quectels_so_OBJS) Makefile
$(LD) $(LDFLAGS) $(SOLINK) -o $@ $(chan_quectels_so_OBJS) $(LIBS)
$(CHMOD) 755 $@
mv $@ chan_quectel.so
.c.o: Makefile config.h
$(CC) $(CFLAGS) $(MAKE_DEPS) -o $@ -c $<
check: tests
./test/test1
./test/parse
./test/gen
tests: test/test1 test/parse test/gen
test/test1: $(test1_OBJS)
$(LD) $(LDFLAGS) -o $@ $(test1_OBJS) $(LIBS)
test/gen: $(gen_OBJS)
$(LD) $(LDFLAGS) -o $@ $(gen_OBJS) $(LIBS)
test/parse: $(parse_OBJS)
$(LD) $(LDFLAGS) -o $@ $(parse_OBJS) $(LIBS)
tools: tools/discovery
tools/discovery: $(discovery_OBJS)
$(LD) $(LDFLAGS) -o $@ $(discovery_OBJS) $(LIBS)
clean:
$(RM) $(PROJM) $(PROJS) *.o *.core .*.d autom4te.cache test/test1 test/*.o tools/discovery test/*.o
distclean: clean
$(RM) Makefile aclocal.m4 compile \
config.guess config.h config.log config.status config.sub \
configure install-sh missing stamp-h stamp-h1
dist: $(SOURCES) $(HEADERS) $(EXTRA_DIST) $(BUILD_TOOLS)
@mkdir $(DISTNAME) $(DISTNAME)/test $(DISTNAME)/tools
@cp -a $(SOURCES) $(HEADERS) $(EXTRA_DIST) $(BUILD_TOOLS) $(DISTNAME)
@cp -a $(test_SOURCES) $(DISTNAME)/test
@cp -a $(tools_SOURCES) $(tools_HEADERS) $(DISTNAME)/tools
tar czf $(DISTNAME).tgz $(DISTNAME) --exclude .svn -h
@$(RM) $(DISTNAME)
configure: configure.ac
autoconf
config.h: stamp-h
stamp-h: config.h.in config.status
./config.status
Makefile: Makefile.in config.status
./config.status
config.status: configure
./config.status --recheck
ifneq ($(wildcard .*.d),)
include .*.d
endif