-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
1578 lines (1422 loc) · 100 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
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
# $Id: Makefile.am 25423 2014-10-24 04:54:56Z yamazaki $
# current:revision:age
# current: increment if interface change.
# revision: increment if source change.
# age: increment if function add.
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = .
DIST_COMMON = README $(am__configure_deps) $(dist_noinst_DATA) \
$(include_HEADERS) $(nobase_dist_doc_DATA) \
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \
ChangeLog INSTALL NEWS config.guess config.sub depcomp \
install-sh ltmain.sh missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" \
"$(DESTDIR)$(includedir)"
LTLIBRARIES = $(lib_LTLIBRARIES)
libarms_la_LIBADD =
am__objects_1 = arms_context.lo arms_pull.lo cache.lo \
arms_push_method_query.lo arms_event_loop.lo malloc.lo \
proxy.lo time.lo libarms.lo lsconfig.lo log.lo version.lo
am__objects_2 = sock.lo ssl.lo
am__objects_3 = getaddrinfo.lo getnameinfo.lo strtok_r.lo strlcpy.lo
am__objects_4 = armsd_miconf.lo armsd_conf_parse.lo \
armsd_miconf_binary.lo
am__objects_5 = module_db_mi.lo
am__objects_6 = scheduler.lo
am__objects_7 = server.lo
am__objects_8 = transaction.lo state.lo retry.lo line.lo echo.lo \
tunnel_chunk.lo ssltunnel.lo
am__objects_9 = arms_methods.lo arms_req_builder.lo arms_req_parser.lo \
arms_res_builder.lo arms_res_parser.lo proto_error.lo \
proto_pull_ls.lo proto_pull_rs.lo proto_push_ready.lo \
proto_push_check_transaction.lo proto_push_clear_status.lo \
proto_push_configure.lo proto_push_confirmation.lo \
proto_push_dump_debug.lo proto_push_method_query.lo \
proto_push_md_command.lo proto_push_ping.lo \
proto_push_pull_config.lo proto_push_read_module_list.lo \
proto_push_read_status.lo proto_push_read_storage.lo \
proto_push_reboot.lo proto_push_traceroute.lo util.lo \
arms_xml_tag.lo
am__objects_10 = axp.lo handler.lo
am__objects_11 = chunk.lo base64.lo http_parser.lo http_builder.lo \
url.lo
am__objects_12 = hb_api.lo hb_routine.lo
am__objects_13 = $(am__objects_1) $(am__objects_2) $(am__objects_3) \
$(am__objects_4) $(am__objects_5) $(am__objects_6) \
$(am__objects_7) $(am__objects_8) $(am__objects_9) \
$(am__objects_10) $(am__objects_11) $(am__objects_12)
am_libarms_la_OBJECTS = $(am__objects_13)
libarms_la_OBJECTS = $(am_libarms_la_OBJECTS)
libarms_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(libarms_la_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(libarms_la_SOURCES)
DIST_SOURCES = $(libarms_la_SOURCES)
DATA = $(dist_noinst_DATA) $(nobase_dist_doc_DATA)
HEADERS = $(include_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
{ test ! -d "$(distdir)" \
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr "$(distdir)"; }; }
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
YACC = @YACC@
YFLAGS = @YFLAGS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
libarms_la_LDFLAGS = -version-info 0:3:0
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -Wall
lib_LTLIBRARIES = libarms.la
libarms_la_SOURCES = $(LIBARMS_SRCS)
include_HEADERS = include/libarms.h
LIBARMS_SRCS = ${LIB_SRCS} ${WRAPPER_SRCS} ${COMPAT_SRCS} ${MICONF_SRCS} \
${MODULE_SRCS} ${SCHED_SRCS} ${SERVER_SRCS} ${TRANS_SRCS} \
${PROTOCOL_SRCS} ${XML_SRCS} ${HTTP_SRCS} ${PORT_SRCS} \
${HB_SRCS}
LIB_SRCS = libarms/arms_context.c \
libarms/arms_pull.c \
libarms/cache.c \
libarms/arms_push_method_query.c \
libarms/arms_event_loop.c \
libarms/malloc.c \
libarms/proxy.c \
libarms/time.c \
libarms/libarms.c \
libarms/lsconfig.c \
libarms/log.c \
libarms/version.c
WRAPPER_SRCS = libarms/sock.c \
libarms/ssl.c
COMPAT_SRCS = compat/getaddrinfo.c \
compat/getnameinfo.c \
compat/strtok_r.c \
compat/strlcpy.c
MICONF_SRCS = miconf/armsd_miconf.c \
miconf/armsd_conf_parse.c \
miconf/armsd_miconf_binary.c
MODULE_SRCS = module/module_db_mi.c
SCHED_SRCS = scheduler/scheduler.c
SERVER_SRCS = server/server.c
TRANS_SRCS = transaction/transaction.c \
transaction/state.c \
transaction/retry.c \
transaction/line.c \
transaction/echo.c \
transaction/tunnel_chunk.c \
transaction/ssltunnel.c
PROTOCOL_SRCS = protocol/arms_methods.c \
protocol/arms_req_builder.c \
protocol/arms_req_parser.c \
protocol/arms_res_builder.c \
protocol/arms_res_parser.c \
protocol/proto_error.c \
protocol/proto_pull_ls.c \
protocol/proto_pull_rs.c \
protocol/proto_push_ready.c \
protocol/proto_push_check_transaction.c \
protocol/proto_push_clear_status.c \
protocol/proto_push_configure.c \
protocol/proto_push_confirmation.c \
protocol/proto_push_dump_debug.c \
protocol/proto_push_method_query.c \
protocol/proto_push_md_command.c \
protocol/proto_push_ping.c \
protocol/proto_push_pull_config.c \
protocol/proto_push_read_module_list.c \
protocol/proto_push_read_status.c \
protocol/proto_push_read_storage.c \
protocol/proto_push_reboot.c \
protocol/proto_push_traceroute.c \
protocol/util.c \
protocol/arms_xml_tag.c
XML_SRCS = xml/axp.c \
xml/handler.c
HTTP_SRCS = http/chunk.c \
http/base64.c \
http/http_parser.c \
http/http_builder.c \
http/url.c
HB_SRCS = libarms/hb_api.c \
libarms/hb_routine.c
dist_noinst_DATA = \
include/arms_xml_tag.h \
include/armsd_conf.h \
include/axp_extern.h \
include/compat.h \
include/errcode.h \
include/hb_routine.h \
include/libarms_log.h \
include/libarms_param.h \
include/libarms_resource.h \
include/libhb.h \
include/lsconfig.h \
include/module_db_mi.h \
http/http.h \
libarms/base64.h \
libarms/malloc.h \
libarms/queue.h \
libarms/sock.h \
libarms/ssl.h \
libarms/time.h \
miconf/armsd_conf_parse.h \
miconf/armsd_miconf_private.h \
protocol/arms_methods.h \
scheduler/scheduler.h \
server/server.h \
transaction/ssltunnel.h \
transaction/transaction.h \
xml/axp_internal.h \
simple-armsd/Makefile \
simple-armsd/cacert.pem \
simple-armsd/callback.c \
simple-armsd/callback.h \
simple-armsd/lines.h \
simple-armsd/main.c \
lsconf/lsconfig_crypt.c \
lsconf/lsconfig_crypt.h
nobase_dist_doc_DATA = \
doc/api/api_top.html \
doc/api/arms_app_event_cb_t.html \
doc/api/arms_command_cb_t.html \
doc/api/arms_config_cb_t.html \
doc/api/arms_dump_state.html \
doc/api/arms_end.html \
doc/api/arms_event_loop.html \
doc/api/arms_get_app_event_interval.html \
doc/api/arms_get_connection_info.html \
doc/api/arms_get_hbtinfo.html \
doc/api/arms_get_proposed_push.html \
doc/api/arms_get_rs_tunnel_url.html \
doc/api/arms_get_rs_url.html \
doc/api/arms_get_rsinfo.html \
doc/api/arms_init.html \
doc/api/arms_get_status_cb_t.html \
doc/api/arms_hb_is_running.html \
doc/api/arms_hb_set_cpu_detail_usage.html \
doc/api/arms_hb_set_cpu_usage.html \
doc/api/arms_hb_set_disk_usage.html \
doc/api/arms_hb_set_mem_usage.html \
doc/api/arms_hb_set_radiowave.html \
doc/api/arms_hb_set_traffic_rate.html \
doc/api/arms_hb_start.html \
doc/api/arms_hb_stop.html \
doc/api/arms_hb_store_statistics_cb_t.html \
doc/api/arms_library_ver.html \
doc/api/arms_library_ver_string.html \
doc/api/arms_line_ctrl_cb_t.html \
doc/api/arms_load_config.html \
doc/api/arms_log_cb_t.html \
doc/api/arms_protocol_ver.html \
doc/api/arms_pull.html \
doc/api/arms_push_method_query.html \
doc/api/arms_read_config_cb_t.html \
doc/api/arms_register_authkey.html \
doc/api/arms_register_cert.html \
doc/api/arms_register_description.html \
doc/api/arms_restore_state.html \
doc/api/arms_set_app_event_interval.html \
doc/api/arms_set_https_proxy.html \
doc/api/arms_set_pull_trigger.html \
doc/api/arms_size_of_state.html \
doc/api/arms_state_cb_t.html \
doc/api/error_code.html \
doc/api/struct.html \
doc/armsd/armsd_top.html \
doc/_sources/api/api_top.txt \
doc/_sources/api/arms_app_event_cb_t.txt \
doc/_sources/api/arms_command_cb_t.txt \
doc/_sources/api/arms_config_cb_t.txt \
doc/_sources/api/arms_dump_state.txt \
doc/_sources/api/arms_end.txt \
doc/_sources/api/arms_event_loop.txt \
doc/_sources/api/arms_get_app_event_interval.txt \
doc/_sources/api/arms_get_connection_info.txt \
doc/_sources/api/arms_get_hbtinfo.txt \
doc/_sources/api/arms_get_proposed_push.txt \
doc/_sources/api/arms_get_rs_tunnel_url.txt \
doc/_sources/api/arms_get_rs_url.txt \
doc/_sources/api/arms_get_rsinfo.txt \
doc/_sources/api/arms_get_status_cb_t.txt \
doc/_sources/api/arms_hb_is_running.txt \
doc/_sources/api/arms_hb_set_cpu_detail_usage.txt \
doc/_sources/api/arms_hb_set_cpu_usage.txt \
doc/_sources/api/arms_hb_set_disk_usage.txt \
doc/_sources/api/arms_hb_set_mem_usage.txt \
doc/_sources/api/arms_hb_set_radiowave.txt \
doc/_sources/api/arms_hb_set_traffic_rate.txt \
doc/_sources/api/arms_hb_start.txt \
doc/_sources/api/arms_hb_stop.txt \
doc/_sources/api/arms_hb_store_statistics_cb_t.txt \
doc/_sources/api/arms_init.txt \
doc/_sources/api/arms_library_ver.txt \
doc/_sources/api/arms_library_ver_string.txt \
doc/_sources/api/struct.txt \
doc/_sources/api/arms_line_ctrl_cb_t.txt \
doc/_sources/api/arms_load_config.txt \
doc/_sources/api/arms_log_cb_t.txt \
doc/_sources/api/arms_protocol_ver.txt \
doc/_sources/api/arms_pull.txt \
doc/_sources/api/arms_push_method_query.txt \
doc/_sources/api/arms_read_config_cb_t.txt \
doc/_sources/api/arms_register_authkey.txt \
doc/_sources/api/arms_register_cert.txt \
doc/_sources/api/arms_register_description.txt \
doc/_sources/api/arms_restore_state.txt \
doc/_sources/api/arms_set_app_event_interval.txt \
doc/_sources/api/arms_set_https_proxy.txt \
doc/_sources/api/arms_set_pull_trigger.txt \
doc/_sources/api/arms_size_of_state.txt \
doc/_sources/api/arms_state_cb_t.txt \
doc/_sources/api/error_code.txt \
doc/_sources/appendix/appendix_top.txt \
doc/_sources/arch/arch_top.txt \
doc/_sources/arch/config.txt \
doc/_sources/arch/pull.txt \
doc/_sources/arch/push.txt \
doc/_sources/arch/heartbeat.txt \
doc/_sources/impl/finalize.txt \
doc/_sources/impl/event.txt \
doc/_sources/impl/impl_top.txt \
doc/_sources/impl/information.txt \
doc/_sources/impl/initialize.txt \
doc/_sources/impl/pull.txt \
doc/_sources/impl/push.txt \
doc/_sources/impl/heartbeat.txt \
doc/_sources/index.txt \
doc/_sources/contents.txt \
doc/_sources/download.txt \
doc/_sources/intro/intro_top.txt \
doc/appendix/appendix_top.html \
doc/arch/arch_top.html \
doc/arch/config.html \
doc/arch/pull.html \
doc/arch/push.html \
doc/arch/heartbeat.html \
doc/impl/event.html \
doc/impl/finalize.html \
doc/impl/impl_top.html \
doc/impl/information.html \
doc/impl/initialize.html \
doc/impl/pull.html \
doc/impl/push.html \
doc/impl/heartbeat.html \
doc/index.html \
doc/contents.html \
doc/download.html \
doc/intro/intro_top.html \
doc/genindex.html \
doc/search.html \
doc/_images/libarms-push.png \
doc/_images/libarms-system.png \
doc/_images/libarms-pull.png \
doc/_images/armsd-push.png \
doc/_images/armsd-pull.png \
doc/_static/pygments.css \
doc/_static/basic.css \
doc/_static/doctools.js \
doc/_static/file.png \
doc/_static/jquery.js \
doc/_static/logo.png \
doc/_static/minus.png \
doc/_static/plus.png \
doc/_static/searchtools.js \
doc/_static/underscore.js \
doc/_static/nature.css \
doc/_static/arrow.png \
doc/_static/bg_x.gif \
doc/_static/bg_y.gif \
doc/_static/h1.gif \
doc/_static/h2.gif \
doc/_static/h3.gif \
doc/_static/head.gif \
doc/_static/point.png \
doc/_static/point2.png \
doc/_static/point3.png \
doc/_static/to_top.png \
doc/.buildinfo \
doc/objects.inv \
doc/searchindex.js
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
am--refresh:
@:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
config.h: stamp-h1
@if test ! -f $@; then \
rm -f stamp-h1; \
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
else :; fi
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in: $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f stamp-h1
touch $@
distclean-hdr:
-rm -f config.h stamp-h1
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
}
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
done
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" != "$$p" || dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
libarms.la: $(libarms_la_OBJECTS) $(libarms_la_DEPENDENCIES)
$(libarms_la_LINK) -rpath $(libdir) $(libarms_la_OBJECTS) $(libarms_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_context.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_event_loop.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_methods.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_pull.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_push_method_query.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_req_builder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_req_parser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_res_builder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_res_parser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arms_xml_tag.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/armsd_conf_parse.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/armsd_miconf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/armsd_miconf_binary.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/axp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base64.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cache.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chunk.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/echo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getaddrinfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getnameinfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/handler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hb_api.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hb_routine.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http_builder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http_parser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libarms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/line.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lsconfig.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/malloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/module_db_mi.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_error.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_pull_ls.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_pull_rs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_check_transaction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_clear_status.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_configure.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_confirmation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_dump_debug.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_md_command.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_method_query.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_ping.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_pull_config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_read_module_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_read_status.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_read_storage.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_ready.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_reboot.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proto_push_traceroute.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proxy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scheduler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/server.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ssl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ssltunnel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/state.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strlcpy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtok_r.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/time.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/transaction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tunnel_chunk.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/url.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Plo@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
.c.obj:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
arms_context.lo: libarms/arms_context.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_context.lo -MD -MP -MF $(DEPDIR)/arms_context.Tpo -c -o arms_context.lo `test -f 'libarms/arms_context.c' || echo '$(srcdir)/'`libarms/arms_context.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_context.Tpo $(DEPDIR)/arms_context.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/arms_context.c' object='arms_context.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_context.lo `test -f 'libarms/arms_context.c' || echo '$(srcdir)/'`libarms/arms_context.c
arms_pull.lo: libarms/arms_pull.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_pull.lo -MD -MP -MF $(DEPDIR)/arms_pull.Tpo -c -o arms_pull.lo `test -f 'libarms/arms_pull.c' || echo '$(srcdir)/'`libarms/arms_pull.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_pull.Tpo $(DEPDIR)/arms_pull.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/arms_pull.c' object='arms_pull.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_pull.lo `test -f 'libarms/arms_pull.c' || echo '$(srcdir)/'`libarms/arms_pull.c
cache.lo: libarms/cache.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cache.lo -MD -MP -MF $(DEPDIR)/cache.Tpo -c -o cache.lo `test -f 'libarms/cache.c' || echo '$(srcdir)/'`libarms/cache.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cache.Tpo $(DEPDIR)/cache.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/cache.c' object='cache.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cache.lo `test -f 'libarms/cache.c' || echo '$(srcdir)/'`libarms/cache.c
arms_push_method_query.lo: libarms/arms_push_method_query.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_push_method_query.lo -MD -MP -MF $(DEPDIR)/arms_push_method_query.Tpo -c -o arms_push_method_query.lo `test -f 'libarms/arms_push_method_query.c' || echo '$(srcdir)/'`libarms/arms_push_method_query.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_push_method_query.Tpo $(DEPDIR)/arms_push_method_query.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/arms_push_method_query.c' object='arms_push_method_query.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_push_method_query.lo `test -f 'libarms/arms_push_method_query.c' || echo '$(srcdir)/'`libarms/arms_push_method_query.c
arms_event_loop.lo: libarms/arms_event_loop.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_event_loop.lo -MD -MP -MF $(DEPDIR)/arms_event_loop.Tpo -c -o arms_event_loop.lo `test -f 'libarms/arms_event_loop.c' || echo '$(srcdir)/'`libarms/arms_event_loop.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_event_loop.Tpo $(DEPDIR)/arms_event_loop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/arms_event_loop.c' object='arms_event_loop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_event_loop.lo `test -f 'libarms/arms_event_loop.c' || echo '$(srcdir)/'`libarms/arms_event_loop.c
malloc.lo: libarms/malloc.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT malloc.lo -MD -MP -MF $(DEPDIR)/malloc.Tpo -c -o malloc.lo `test -f 'libarms/malloc.c' || echo '$(srcdir)/'`libarms/malloc.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/malloc.Tpo $(DEPDIR)/malloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/malloc.c' object='malloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o malloc.lo `test -f 'libarms/malloc.c' || echo '$(srcdir)/'`libarms/malloc.c
proxy.lo: libarms/proxy.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT proxy.lo -MD -MP -MF $(DEPDIR)/proxy.Tpo -c -o proxy.lo `test -f 'libarms/proxy.c' || echo '$(srcdir)/'`libarms/proxy.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/proxy.Tpo $(DEPDIR)/proxy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/proxy.c' object='proxy.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o proxy.lo `test -f 'libarms/proxy.c' || echo '$(srcdir)/'`libarms/proxy.c
time.lo: libarms/time.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT time.lo -MD -MP -MF $(DEPDIR)/time.Tpo -c -o time.lo `test -f 'libarms/time.c' || echo '$(srcdir)/'`libarms/time.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/time.Tpo $(DEPDIR)/time.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/time.c' object='time.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o time.lo `test -f 'libarms/time.c' || echo '$(srcdir)/'`libarms/time.c
libarms.lo: libarms/libarms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libarms.lo -MD -MP -MF $(DEPDIR)/libarms.Tpo -c -o libarms.lo `test -f 'libarms/libarms.c' || echo '$(srcdir)/'`libarms/libarms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libarms.Tpo $(DEPDIR)/libarms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/libarms.c' object='libarms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libarms.lo `test -f 'libarms/libarms.c' || echo '$(srcdir)/'`libarms/libarms.c
lsconfig.lo: libarms/lsconfig.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lsconfig.lo -MD -MP -MF $(DEPDIR)/lsconfig.Tpo -c -o lsconfig.lo `test -f 'libarms/lsconfig.c' || echo '$(srcdir)/'`libarms/lsconfig.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/lsconfig.Tpo $(DEPDIR)/lsconfig.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/lsconfig.c' object='lsconfig.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lsconfig.lo `test -f 'libarms/lsconfig.c' || echo '$(srcdir)/'`libarms/lsconfig.c
log.lo: libarms/log.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT log.lo -MD -MP -MF $(DEPDIR)/log.Tpo -c -o log.lo `test -f 'libarms/log.c' || echo '$(srcdir)/'`libarms/log.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/log.Tpo $(DEPDIR)/log.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/log.c' object='log.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o log.lo `test -f 'libarms/log.c' || echo '$(srcdir)/'`libarms/log.c
version.lo: libarms/version.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT version.lo -MD -MP -MF $(DEPDIR)/version.Tpo -c -o version.lo `test -f 'libarms/version.c' || echo '$(srcdir)/'`libarms/version.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/version.Tpo $(DEPDIR)/version.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/version.c' object='version.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o version.lo `test -f 'libarms/version.c' || echo '$(srcdir)/'`libarms/version.c
sock.lo: libarms/sock.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sock.lo -MD -MP -MF $(DEPDIR)/sock.Tpo -c -o sock.lo `test -f 'libarms/sock.c' || echo '$(srcdir)/'`libarms/sock.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/sock.Tpo $(DEPDIR)/sock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/sock.c' object='sock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sock.lo `test -f 'libarms/sock.c' || echo '$(srcdir)/'`libarms/sock.c
ssl.lo: libarms/ssl.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ssl.lo -MD -MP -MF $(DEPDIR)/ssl.Tpo -c -o ssl.lo `test -f 'libarms/ssl.c' || echo '$(srcdir)/'`libarms/ssl.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ssl.Tpo $(DEPDIR)/ssl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libarms/ssl.c' object='ssl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ssl.lo `test -f 'libarms/ssl.c' || echo '$(srcdir)/'`libarms/ssl.c
getaddrinfo.lo: compat/getaddrinfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getaddrinfo.lo -MD -MP -MF $(DEPDIR)/getaddrinfo.Tpo -c -o getaddrinfo.lo `test -f 'compat/getaddrinfo.c' || echo '$(srcdir)/'`compat/getaddrinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/getaddrinfo.Tpo $(DEPDIR)/getaddrinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='compat/getaddrinfo.c' object='getaddrinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getaddrinfo.lo `test -f 'compat/getaddrinfo.c' || echo '$(srcdir)/'`compat/getaddrinfo.c
getnameinfo.lo: compat/getnameinfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getnameinfo.lo -MD -MP -MF $(DEPDIR)/getnameinfo.Tpo -c -o getnameinfo.lo `test -f 'compat/getnameinfo.c' || echo '$(srcdir)/'`compat/getnameinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/getnameinfo.Tpo $(DEPDIR)/getnameinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='compat/getnameinfo.c' object='getnameinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getnameinfo.lo `test -f 'compat/getnameinfo.c' || echo '$(srcdir)/'`compat/getnameinfo.c
strtok_r.lo: compat/strtok_r.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strtok_r.lo -MD -MP -MF $(DEPDIR)/strtok_r.Tpo -c -o strtok_r.lo `test -f 'compat/strtok_r.c' || echo '$(srcdir)/'`compat/strtok_r.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/strtok_r.Tpo $(DEPDIR)/strtok_r.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='compat/strtok_r.c' object='strtok_r.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strtok_r.lo `test -f 'compat/strtok_r.c' || echo '$(srcdir)/'`compat/strtok_r.c
strlcpy.lo: compat/strlcpy.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strlcpy.lo -MD -MP -MF $(DEPDIR)/strlcpy.Tpo -c -o strlcpy.lo `test -f 'compat/strlcpy.c' || echo '$(srcdir)/'`compat/strlcpy.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/strlcpy.Tpo $(DEPDIR)/strlcpy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='compat/strlcpy.c' object='strlcpy.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strlcpy.lo `test -f 'compat/strlcpy.c' || echo '$(srcdir)/'`compat/strlcpy.c
armsd_miconf.lo: miconf/armsd_miconf.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armsd_miconf.lo -MD -MP -MF $(DEPDIR)/armsd_miconf.Tpo -c -o armsd_miconf.lo `test -f 'miconf/armsd_miconf.c' || echo '$(srcdir)/'`miconf/armsd_miconf.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/armsd_miconf.Tpo $(DEPDIR)/armsd_miconf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='miconf/armsd_miconf.c' object='armsd_miconf.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armsd_miconf.lo `test -f 'miconf/armsd_miconf.c' || echo '$(srcdir)/'`miconf/armsd_miconf.c
armsd_conf_parse.lo: miconf/armsd_conf_parse.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armsd_conf_parse.lo -MD -MP -MF $(DEPDIR)/armsd_conf_parse.Tpo -c -o armsd_conf_parse.lo `test -f 'miconf/armsd_conf_parse.c' || echo '$(srcdir)/'`miconf/armsd_conf_parse.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/armsd_conf_parse.Tpo $(DEPDIR)/armsd_conf_parse.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='miconf/armsd_conf_parse.c' object='armsd_conf_parse.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armsd_conf_parse.lo `test -f 'miconf/armsd_conf_parse.c' || echo '$(srcdir)/'`miconf/armsd_conf_parse.c
armsd_miconf_binary.lo: miconf/armsd_miconf_binary.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armsd_miconf_binary.lo -MD -MP -MF $(DEPDIR)/armsd_miconf_binary.Tpo -c -o armsd_miconf_binary.lo `test -f 'miconf/armsd_miconf_binary.c' || echo '$(srcdir)/'`miconf/armsd_miconf_binary.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/armsd_miconf_binary.Tpo $(DEPDIR)/armsd_miconf_binary.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='miconf/armsd_miconf_binary.c' object='armsd_miconf_binary.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armsd_miconf_binary.lo `test -f 'miconf/armsd_miconf_binary.c' || echo '$(srcdir)/'`miconf/armsd_miconf_binary.c
module_db_mi.lo: module/module_db_mi.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT module_db_mi.lo -MD -MP -MF $(DEPDIR)/module_db_mi.Tpo -c -o module_db_mi.lo `test -f 'module/module_db_mi.c' || echo '$(srcdir)/'`module/module_db_mi.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/module_db_mi.Tpo $(DEPDIR)/module_db_mi.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module/module_db_mi.c' object='module_db_mi.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o module_db_mi.lo `test -f 'module/module_db_mi.c' || echo '$(srcdir)/'`module/module_db_mi.c
scheduler.lo: scheduler/scheduler.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scheduler.lo -MD -MP -MF $(DEPDIR)/scheduler.Tpo -c -o scheduler.lo `test -f 'scheduler/scheduler.c' || echo '$(srcdir)/'`scheduler/scheduler.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/scheduler.Tpo $(DEPDIR)/scheduler.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scheduler/scheduler.c' object='scheduler.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scheduler.lo `test -f 'scheduler/scheduler.c' || echo '$(srcdir)/'`scheduler/scheduler.c
server.lo: server/server.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT server.lo -MD -MP -MF $(DEPDIR)/server.Tpo -c -o server.lo `test -f 'server/server.c' || echo '$(srcdir)/'`server/server.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/server.Tpo $(DEPDIR)/server.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server/server.c' object='server.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o server.lo `test -f 'server/server.c' || echo '$(srcdir)/'`server/server.c
transaction.lo: transaction/transaction.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT transaction.lo -MD -MP -MF $(DEPDIR)/transaction.Tpo -c -o transaction.lo `test -f 'transaction/transaction.c' || echo '$(srcdir)/'`transaction/transaction.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/transaction.Tpo $(DEPDIR)/transaction.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/transaction.c' object='transaction.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o transaction.lo `test -f 'transaction/transaction.c' || echo '$(srcdir)/'`transaction/transaction.c
state.lo: transaction/state.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT state.lo -MD -MP -MF $(DEPDIR)/state.Tpo -c -o state.lo `test -f 'transaction/state.c' || echo '$(srcdir)/'`transaction/state.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/state.Tpo $(DEPDIR)/state.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/state.c' object='state.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o state.lo `test -f 'transaction/state.c' || echo '$(srcdir)/'`transaction/state.c
retry.lo: transaction/retry.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT retry.lo -MD -MP -MF $(DEPDIR)/retry.Tpo -c -o retry.lo `test -f 'transaction/retry.c' || echo '$(srcdir)/'`transaction/retry.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/retry.Tpo $(DEPDIR)/retry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/retry.c' object='retry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o retry.lo `test -f 'transaction/retry.c' || echo '$(srcdir)/'`transaction/retry.c
line.lo: transaction/line.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT line.lo -MD -MP -MF $(DEPDIR)/line.Tpo -c -o line.lo `test -f 'transaction/line.c' || echo '$(srcdir)/'`transaction/line.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/line.Tpo $(DEPDIR)/line.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/line.c' object='line.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o line.lo `test -f 'transaction/line.c' || echo '$(srcdir)/'`transaction/line.c
echo.lo: transaction/echo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT echo.lo -MD -MP -MF $(DEPDIR)/echo.Tpo -c -o echo.lo `test -f 'transaction/echo.c' || echo '$(srcdir)/'`transaction/echo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/echo.Tpo $(DEPDIR)/echo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/echo.c' object='echo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o echo.lo `test -f 'transaction/echo.c' || echo '$(srcdir)/'`transaction/echo.c
tunnel_chunk.lo: transaction/tunnel_chunk.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tunnel_chunk.lo -MD -MP -MF $(DEPDIR)/tunnel_chunk.Tpo -c -o tunnel_chunk.lo `test -f 'transaction/tunnel_chunk.c' || echo '$(srcdir)/'`transaction/tunnel_chunk.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tunnel_chunk.Tpo $(DEPDIR)/tunnel_chunk.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/tunnel_chunk.c' object='tunnel_chunk.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tunnel_chunk.lo `test -f 'transaction/tunnel_chunk.c' || echo '$(srcdir)/'`transaction/tunnel_chunk.c
ssltunnel.lo: transaction/ssltunnel.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ssltunnel.lo -MD -MP -MF $(DEPDIR)/ssltunnel.Tpo -c -o ssltunnel.lo `test -f 'transaction/ssltunnel.c' || echo '$(srcdir)/'`transaction/ssltunnel.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ssltunnel.Tpo $(DEPDIR)/ssltunnel.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='transaction/ssltunnel.c' object='ssltunnel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ssltunnel.lo `test -f 'transaction/ssltunnel.c' || echo '$(srcdir)/'`transaction/ssltunnel.c
arms_methods.lo: protocol/arms_methods.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_methods.lo -MD -MP -MF $(DEPDIR)/arms_methods.Tpo -c -o arms_methods.lo `test -f 'protocol/arms_methods.c' || echo '$(srcdir)/'`protocol/arms_methods.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_methods.Tpo $(DEPDIR)/arms_methods.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='protocol/arms_methods.c' object='arms_methods.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_methods.lo `test -f 'protocol/arms_methods.c' || echo '$(srcdir)/'`protocol/arms_methods.c
arms_req_builder.lo: protocol/arms_req_builder.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_req_builder.lo -MD -MP -MF $(DEPDIR)/arms_req_builder.Tpo -c -o arms_req_builder.lo `test -f 'protocol/arms_req_builder.c' || echo '$(srcdir)/'`protocol/arms_req_builder.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_req_builder.Tpo $(DEPDIR)/arms_req_builder.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='protocol/arms_req_builder.c' object='arms_req_builder.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_req_builder.lo `test -f 'protocol/arms_req_builder.c' || echo '$(srcdir)/'`protocol/arms_req_builder.c
arms_req_parser.lo: protocol/arms_req_parser.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_req_parser.lo -MD -MP -MF $(DEPDIR)/arms_req_parser.Tpo -c -o arms_req_parser.lo `test -f 'protocol/arms_req_parser.c' || echo '$(srcdir)/'`protocol/arms_req_parser.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_req_parser.Tpo $(DEPDIR)/arms_req_parser.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='protocol/arms_req_parser.c' object='arms_req_parser.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_req_parser.lo `test -f 'protocol/arms_req_parser.c' || echo '$(srcdir)/'`protocol/arms_req_parser.c
arms_res_builder.lo: protocol/arms_res_builder.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_res_builder.lo -MD -MP -MF $(DEPDIR)/arms_res_builder.Tpo -c -o arms_res_builder.lo `test -f 'protocol/arms_res_builder.c' || echo '$(srcdir)/'`protocol/arms_res_builder.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_res_builder.Tpo $(DEPDIR)/arms_res_builder.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='protocol/arms_res_builder.c' object='arms_res_builder.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_res_builder.lo `test -f 'protocol/arms_res_builder.c' || echo '$(srcdir)/'`protocol/arms_res_builder.c
arms_res_parser.lo: protocol/arms_res_parser.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT arms_res_parser.lo -MD -MP -MF $(DEPDIR)/arms_res_parser.Tpo -c -o arms_res_parser.lo `test -f 'protocol/arms_res_parser.c' || echo '$(srcdir)/'`protocol/arms_res_parser.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/arms_res_parser.Tpo $(DEPDIR)/arms_res_parser.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='protocol/arms_res_parser.c' object='arms_res_parser.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o arms_res_parser.lo `test -f 'protocol/arms_res_parser.c' || echo '$(srcdir)/'`protocol/arms_res_parser.c
proto_error.lo: protocol/proto_error.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT proto_error.lo -MD -MP -MF $(DEPDIR)/proto_error.Tpo -c -o proto_error.lo `test -f 'protocol/proto_error.c' || echo '$(srcdir)/'`protocol/proto_error.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/proto_error.Tpo $(DEPDIR)/proto_error.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='protocol/proto_error.c' object='proto_error.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o proto_error.lo `test -f 'protocol/proto_error.c' || echo '$(srcdir)/'`protocol/proto_error.c
proto_pull_ls.lo: protocol/proto_pull_ls.c