File: Makefile.in

package info (click to toggle)
pidgin 2.14.12-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 52,348 kB
  • sloc: ansic: 253,272; sh: 4,565; makefile: 3,170; python: 1,232; perl: 533; cs: 209; tcl: 96; xml: 9
file content (1537 lines) | stat: -rw-r--r-- 101,051 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2021 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@

VPATH = @srcdir@
am__is_gnu_make = { \
  if test -z '$(MAKELEVEL)'; then \
    false; \
  elif test -n '$(MAKE_HOST)'; then \
    true; \
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    true; \
  else \
    false; \
  fi; \
}
am__make_running_with_option = \
  case $${target_option-} in \
      ?) ;; \
      *) echo "am__make_running_with_option: internal error: invalid" \
              "target option '$${target_option-}' specified" >&2; \
         exit 1;; \
  esac; \
  has_opt=no; \
  sane_makeflags=$$MAKEFLAGS; \
  if $(am__is_gnu_make); then \
    sane_makeflags=$$MFLAGS; \
  else \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        bs=\\; \
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
    esac; \
  fi; \
  skip_next=no; \
  strip_trailopt () \
  { \
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  }; \
  for flg in $$sane_makeflags; do \
    test $$skip_next = yes && { skip_next=no; continue; }; \
    case $$flg in \
      *=*|--*) continue;; \
        -*I) strip_trailopt 'I'; skip_next=yes;; \
      -*I?*) strip_trailopt 'I';; \
        -*O) strip_trailopt 'O'; skip_next=yes;; \
      -*O?*) strip_trailopt 'O';; \
        -*l) strip_trailopt 'l'; skip_next=yes;; \
      -*l?*) strip_trailopt 'l';; \
      -[dEDm]) skip_next=yes;; \
      -[JT]) skip_next=yes;; \
    esac; \
    case $$flg in \
      *$$target_option*) has_opt=yes; break;; \
    esac; \
  done; \
  test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
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 = libpurple/protocols/zephyr
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/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__uninstall_files_from_dir = { \
  test -z "$$files" \
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
         $(am__cd) "$$dir" && rm -f $$files; }; \
  }
am__installdirs = "$(DESTDIR)$(pkgdir)"
LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkg_LTLIBRARIES)
am__DEPENDENCIES_1 =
am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
@EXTERNAL_LIBZEPHYR_FALSE@@STATIC_ZEPHYR_FALSE@libzephyr_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
@EXTERNAL_LIBZEPHYR_FALSE@@STATIC_ZEPHYR_FALSE@	$(am__DEPENDENCIES_2)
@EXTERNAL_LIBZEPHYR_TRUE@@STATIC_ZEPHYR_FALSE@libzephyr_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
@EXTERNAL_LIBZEPHYR_TRUE@@STATIC_ZEPHYR_FALSE@	$(am__DEPENDENCIES_2)
@STATIC_ZEPHYR_TRUE@libzephyr_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am__libzephyr_la_SOURCES_DIST = ZAsyncLocate.c ZCkAuth.c ZCkIfNot.c \
	ZClosePort.c ZCmpUID.c ZCmpUIDP.c ZFlsLocs.c ZFlsSubs.c \
	ZFmtAuth.c ZFmtList.c ZFmtNotice.c ZFmtRaw.c ZFmtRawLst.c \
	ZFmtSmRLst.c ZFmtSmRaw.c ZFreeNot.c ZGetLocs.c ZGetSender.c \
	ZGetSubs.c ZGetWGPort.c ZIfNotice.c ZInit.c ZLocations.c \
	ZMakeAscii.c ZMkAuth.c ZNewLocU.c ZOpenPort.c ZParseNot.c \
	ZPeekIfNot.c ZPeekNot.c ZPeekPkt.c ZPending.c ZReadAscii.c \
	ZRecvNot.c ZRecvPkt.c ZRetSubs.c ZSendList.c ZSendNot.c \
	ZSendPkt.c ZSendRLst.c ZSendRaw.c ZSetDest.c ZSetFD.c \
	ZSetSrv.c ZSubs.c ZVariables.c ZWait4Not.c ZhmStat.c \
	Zinternal.c com_err.h error_message.c error_table.h et_name.c \
	init_et.c internal.h mit-copyright.h mit-sipb-copyright.h \
	sysdep.h zephyr_err.c zephyr_err.h zephyr_internal.h zephyr.c
am__objects_1 = libzephyr_la-ZAsyncLocate.lo libzephyr_la-ZCkAuth.lo \
	libzephyr_la-ZCkIfNot.lo libzephyr_la-ZClosePort.lo \
	libzephyr_la-ZCmpUID.lo libzephyr_la-ZCmpUIDP.lo \
	libzephyr_la-ZFlsLocs.lo libzephyr_la-ZFlsSubs.lo \
	libzephyr_la-ZFmtAuth.lo libzephyr_la-ZFmtList.lo \
	libzephyr_la-ZFmtNotice.lo libzephyr_la-ZFmtRaw.lo \
	libzephyr_la-ZFmtRawLst.lo libzephyr_la-ZFmtSmRLst.lo \
	libzephyr_la-ZFmtSmRaw.lo libzephyr_la-ZFreeNot.lo \
	libzephyr_la-ZGetLocs.lo libzephyr_la-ZGetSender.lo \
	libzephyr_la-ZGetSubs.lo libzephyr_la-ZGetWGPort.lo \
	libzephyr_la-ZIfNotice.lo libzephyr_la-ZInit.lo \
	libzephyr_la-ZLocations.lo libzephyr_la-ZMakeAscii.lo \
	libzephyr_la-ZMkAuth.lo libzephyr_la-ZNewLocU.lo \
	libzephyr_la-ZOpenPort.lo libzephyr_la-ZParseNot.lo \
	libzephyr_la-ZPeekIfNot.lo libzephyr_la-ZPeekNot.lo \
	libzephyr_la-ZPeekPkt.lo libzephyr_la-ZPending.lo \
	libzephyr_la-ZReadAscii.lo libzephyr_la-ZRecvNot.lo \
	libzephyr_la-ZRecvPkt.lo libzephyr_la-ZRetSubs.lo \
	libzephyr_la-ZSendList.lo libzephyr_la-ZSendNot.lo \
	libzephyr_la-ZSendPkt.lo libzephyr_la-ZSendRLst.lo \
	libzephyr_la-ZSendRaw.lo libzephyr_la-ZSetDest.lo \
	libzephyr_la-ZSetFD.lo libzephyr_la-ZSetSrv.lo \
	libzephyr_la-ZSubs.lo libzephyr_la-ZVariables.lo \
	libzephyr_la-ZWait4Not.lo libzephyr_la-ZhmStat.lo \
	libzephyr_la-Zinternal.lo libzephyr_la-error_message.lo \
	libzephyr_la-et_name.lo libzephyr_la-init_et.lo \
	libzephyr_la-zephyr_err.lo libzephyr_la-zephyr.lo
am__objects_2 = libzephyr_la-zephyr.lo
@EXTERNAL_LIBZEPHYR_FALSE@@STATIC_ZEPHYR_FALSE@am_libzephyr_la_OBJECTS = $(am__objects_1)
@EXTERNAL_LIBZEPHYR_TRUE@@STATIC_ZEPHYR_FALSE@am_libzephyr_la_OBJECTS = $(am__objects_2)
@STATIC_ZEPHYR_TRUE@am_libzephyr_la_OBJECTS = $(am__objects_1)
libzephyr_la_OBJECTS = $(am_libzephyr_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 = 
libzephyr_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libzephyr_la_CFLAGS) \
	$(CFLAGS) $(libzephyr_la_LDFLAGS) $(LDFLAGS) -o $@
@STATIC_ZEPHYR_FALSE@am_libzephyr_la_rpath = -rpath $(pkgdir)
@STATIC_ZEPHYR_TRUE@am_libzephyr_la_rpath =
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo "  GEN     " $@;
am__v_GEN_1 = 
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 = 
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/libzephyr_la-ZAsyncLocate.Plo \
	./$(DEPDIR)/libzephyr_la-ZCkAuth.Plo \
	./$(DEPDIR)/libzephyr_la-ZCkIfNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZClosePort.Plo \
	./$(DEPDIR)/libzephyr_la-ZCmpUID.Plo \
	./$(DEPDIR)/libzephyr_la-ZCmpUIDP.Plo \
	./$(DEPDIR)/libzephyr_la-ZFlsLocs.Plo \
	./$(DEPDIR)/libzephyr_la-ZFlsSubs.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtAuth.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtList.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtNotice.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtRaw.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtRawLst.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtSmRLst.Plo \
	./$(DEPDIR)/libzephyr_la-ZFmtSmRaw.Plo \
	./$(DEPDIR)/libzephyr_la-ZFreeNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZGetLocs.Plo \
	./$(DEPDIR)/libzephyr_la-ZGetSender.Plo \
	./$(DEPDIR)/libzephyr_la-ZGetSubs.Plo \
	./$(DEPDIR)/libzephyr_la-ZGetWGPort.Plo \
	./$(DEPDIR)/libzephyr_la-ZIfNotice.Plo \
	./$(DEPDIR)/libzephyr_la-ZInit.Plo \
	./$(DEPDIR)/libzephyr_la-ZLocations.Plo \
	./$(DEPDIR)/libzephyr_la-ZMakeAscii.Plo \
	./$(DEPDIR)/libzephyr_la-ZMkAuth.Plo \
	./$(DEPDIR)/libzephyr_la-ZNewLocU.Plo \
	./$(DEPDIR)/libzephyr_la-ZOpenPort.Plo \
	./$(DEPDIR)/libzephyr_la-ZParseNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZPeekIfNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZPeekNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZPeekPkt.Plo \
	./$(DEPDIR)/libzephyr_la-ZPending.Plo \
	./$(DEPDIR)/libzephyr_la-ZReadAscii.Plo \
	./$(DEPDIR)/libzephyr_la-ZRecvNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZRecvPkt.Plo \
	./$(DEPDIR)/libzephyr_la-ZRetSubs.Plo \
	./$(DEPDIR)/libzephyr_la-ZSendList.Plo \
	./$(DEPDIR)/libzephyr_la-ZSendNot.Plo \
	./$(DEPDIR)/libzephyr_la-ZSendPkt.Plo \
	./$(DEPDIR)/libzephyr_la-ZSendRLst.Plo \
	./$(DEPDIR)/libzephyr_la-ZSendRaw.Plo \
	./$(DEPDIR)/libzephyr_la-ZSetDest.Plo \
	./$(DEPDIR)/libzephyr_la-ZSetFD.Plo \
	./$(DEPDIR)/libzephyr_la-ZSetSrv.Plo \
	./$(DEPDIR)/libzephyr_la-ZSubs.Plo \
	./$(DEPDIR)/libzephyr_la-ZVariables.Plo \
	./$(DEPDIR)/libzephyr_la-ZWait4Not.Plo \
	./$(DEPDIR)/libzephyr_la-ZhmStat.Plo \
	./$(DEPDIR)/libzephyr_la-Zinternal.Plo \
	./$(DEPDIR)/libzephyr_la-error_message.Plo \
	./$(DEPDIR)/libzephyr_la-et_name.Plo \
	./$(DEPDIR)/libzephyr_la-init_et.Plo \
	./$(DEPDIR)/libzephyr_la-zephyr.Plo \
	./$(DEPDIR)/libzephyr_la-zephyr_err.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo "  CC      " $@;
am__v_CC_1 = 
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo "  CCLD    " $@;
am__v_CCLD_1 = 
SOURCES = $(libzephyr_la_SOURCES)
DIST_SOURCES = $(am__libzephyr_la_SOURCES_DIST)
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates.  Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
  BEGIN { nonempty = 0; } \
  { items[$$0] = 1; nonempty = 1; } \
  END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique.  This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
  list='$(am__tagged_files)'; \
  unique=`for i in $$list; do \
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  done | $(am__uniquify_input)`
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALLOCA = @ALLOCA@
ALL_LINGUAS = @ALL_LINGUAS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AVAHI_CFLAGS = @AVAHI_CFLAGS@
AVAHI_LIBS = @AVAHI_LIBS@
AWK = @AWK@
CATALOGS = @CATALOGS@
CATOBJEXT = @CATOBJEXT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHECK_CFLAGS = @CHECK_CFLAGS@
CHECK_LIBS = @CHECK_LIBS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DATADIRNAME = @DATADIRNAME@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@
DEBUG_CFLAGS = @DEBUG_CFLAGS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DOT = @DOT@
DOXYGEN = @DOXYGEN@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
DYNALOADER_A = @DYNALOADER_A@
DYNAMIC_PRPLS = @DYNAMIC_PRPLS@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EVOLUTION_ADDRESSBOOK_CFLAGS = @EVOLUTION_ADDRESSBOOK_CFLAGS@
EVOLUTION_ADDRESSBOOK_LIBS = @EVOLUTION_ADDRESSBOOK_LIBS@
EXEEXT = @EXEEXT@
FARSTREAM_CFLAGS = @FARSTREAM_CFLAGS@
FARSTREAM_LIBS = @FARSTREAM_LIBS@
FGREP = @FGREP@
FILECMD = @FILECMD@
GCONFTOOL = @GCONFTOOL@
GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
GIO_UNIX_CFLAGS = @GIO_UNIX_CFLAGS@
GIO_UNIX_LIBS = @GIO_UNIX_LIBS@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
GLIB_LIBS = @GLIB_LIBS@
GMOFILES = @GMOFILES@
GMSGFMT = @GMSGFMT@
GNT_CFLAGS = @GNT_CFLAGS@
GNT_LIBS = @GNT_LIBS@
GNUTLS_2_10_CFLAGS = @GNUTLS_2_10_CFLAGS@
GNUTLS_2_10_LIBS = @GNUTLS_2_10_LIBS@
GNUTLS_CFLAGS = @GNUTLS_CFLAGS@
GNUTLS_LIBS = @GNUTLS_LIBS@
GREP = @GREP@
GSTAPP_CFLAGS = @GSTAPP_CFLAGS@
GSTAPP_LIBS = @GSTAPP_LIBS@
GSTINTERFACES_CFLAGS = @GSTINTERFACES_CFLAGS@
GSTINTERFACES_LIBS = @GSTINTERFACES_LIBS@
GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@
GSTREAMER_LIBS = @GSTREAMER_LIBS@
GSTREAMER_VER = @GSTREAMER_VER@
GSTVIDEO_CFLAGS = @GSTVIDEO_CFLAGS@
GSTVIDEO_LIBS = @GSTVIDEO_LIBS@
GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@
GTKSPELL_LIBS = @GTKSPELL_LIBS@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_LIBS = @GTK_LIBS@
IDN_CFLAGS = @IDN_CFLAGS@
IDN_LIBS = @IDN_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLLIBS = @INTLLIBS@
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
INTLTOOL_MERGE = @INTLTOOL_MERGE@
INTLTOOL_PERL = @INTLTOOL_PERL@
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
KRB4_CFLAGS = @KRB4_CFLAGS@
KRB4_LDFLAGS = @KRB4_LDFLAGS@
KRB4_LIBS = @KRB4_LIBS@
LD = @LD@
LDADD = @LDADD@
LDFLAGS = @LDFLAGS@
LIBGADU_CFLAGS = @LIBGADU_CFLAGS@
LIBGADU_LIBS = @LIBGADU_LIBS@
LIBGNT_CFLAGS = @LIBGNT_CFLAGS@
LIBGNT_LIBS = @LIBGNT_LIBS@
LIBM = @LIBM@
LIBOBJS = @LIBOBJS@
LIBPERL_A = @LIBPERL_A@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBXML_CFLAGS = @LIBXML_CFLAGS@
LIBXML_LIBS = @LIBXML_LIBS@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MEANWHILE_CFLAGS = @MEANWHILE_CFLAGS@
MEANWHILE_LIBS = @MEANWHILE_LIBS@
MKDIR_P = @MKDIR_P@
MKINSTALLDIRS = @MKINSTALLDIRS@
MONO_CFLAGS = @MONO_CFLAGS@
MONO_LIBS = @MONO_LIBS@
MSGFMT = @MSGFMT@
MSGFMT_OPTS = @MSGFMT_OPTS@
MSGMERGE = @MSGMERGE@
NETWORKMANAGER_CFLAGS = @NETWORKMANAGER_CFLAGS@
NETWORKMANAGER_LIBS = @NETWORKMANAGER_LIBS@
NM = @NM@
NMEDIT = @NMEDIT@
NSS_CFLAGS = @NSS_CFLAGS@
NSS_LIBS = @NSS_LIBS@
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@
PANGO_CFLAGS = @PANGO_CFLAGS@
PANGO_LIBS = @PANGO_LIBS@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
PERL_CFLAGS = @PERL_CFLAGS@
PERL_LIBS = @PERL_LIBS@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PLUGINS_DEFINE = @PLUGINS_DEFINE@
POFILES = @POFILES@
POSUB = @POSUB@
PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
PURPLE_LT_VERSION_INFO = @PURPLE_LT_VERSION_INFO@
PURPLE_MAJOR_VERSION = @PURPLE_MAJOR_VERSION@
PURPLE_MICRO_VERSION = @PURPLE_MICRO_VERSION@
PURPLE_MINOR_VERSION = @PURPLE_MINOR_VERSION@
PURPLE_VERSION = @PURPLE_VERSION@
PYTHON3 = @PYTHON3@
RANLIB = @RANLIB@
SASL_LIBS = @SASL_LIBS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SILC_CFLAGS = @SILC_CFLAGS@
SILC_LIBS = @SILC_LIBS@
SM_LIBS = @SM_LIBS@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
SSL_CERTIFICATES_DIR = @SSL_CERTIFICATES_DIR@
STATIC_LINK_LIBS = @STATIC_LINK_LIBS@
STATIC_PRPLS = @STATIC_PRPLS@
STRIP = @STRIP@
TCL_CFLAGS = @TCL_CFLAGS@
TCL_LIBS = @TCL_LIBS@
TK_LIBS = @TK_LIBS@
UNITY_CFLAGS = @UNITY_CFLAGS@
UNITY_LIBS = @UNITY_LIBS@
USES_MM_CHAT_SECTION = @USES_MM_CHAT_SECTION@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
X11_CFLAGS = @X11_CFLAGS@
X11_LIBS = @X11_LIBS@
XGETTEXT = @XGETTEXT@
XMKMF = @XMKMF@
XSLTPROC = @XSLTPROC@
XSS_LIBS = @XSS_LIBS@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
ZEPHYR_CFLAGS = @ZEPHYR_CFLAGS@
ZEPHYR_LDFLAGS = @ZEPHYR_LDFLAGS@
ZEPHYR_LIBS = @ZEPHYR_LIBS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
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@
enable_dbus = @enable_dbus@
enable_devhelp = @enable_devhelp@
enable_dot = @enable_dot@
enable_doxygen = @enable_doxygen@
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@
intltool__v_merge_options_ = @intltool__v_merge_options_@
intltool__v_merge_options_0 = @intltool__v_merge_options_0@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
perlpath = @perlpath@
pidginpath = @pidginpath@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sedpath = @sedpath@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
ZEPHYRSOURCES = \
	ZAsyncLocate.c \
	ZCkAuth.c \
	ZCkIfNot.c \
	ZClosePort.c \
	ZCmpUID.c \
	ZCmpUIDP.c \
	ZFlsLocs.c \
	ZFlsSubs.c \
	ZFmtAuth.c \
	ZFmtList.c \
	ZFmtNotice.c \
	ZFmtRaw.c \
	ZFmtRawLst.c \
	ZFmtSmRLst.c \
	ZFmtSmRaw.c \
	ZFreeNot.c \
	ZGetLocs.c \
	ZGetSender.c \
	ZGetSubs.c \
	ZGetWGPort.c \
	ZIfNotice.c \
	ZInit.c \
	ZLocations.c \
	ZMakeAscii.c \
	ZMkAuth.c \
	ZNewLocU.c \
	ZOpenPort.c \
	ZParseNot.c \
	ZPeekIfNot.c \
	ZPeekNot.c \
	ZPeekPkt.c \
	ZPending.c \
	ZReadAscii.c \
	ZRecvNot.c \
	ZRecvPkt.c \
	ZRetSubs.c \
	ZSendList.c \
	ZSendNot.c \
	ZSendPkt.c \
	ZSendRLst.c \
	ZSendRaw.c \
	ZSetDest.c \
	ZSetFD.c \
	ZSetSrv.c \
	ZSubs.c \
	ZVariables.c \
	ZWait4Not.c \
	ZhmStat.c \
	Zinternal.c \
	com_err.h \
	error_message.c \
	error_table.h \
	et_name.c \
	init_et.c \
	internal.h \
	mit-copyright.h \
	mit-sipb-copyright.h \
	sysdep.h \
	zephyr_err.c \
	zephyr_err.h \
	zephyr_internal.h \
	zephyr.c

ZEPHYRSOURCESEXT = zephyr.c
AM_CFLAGS = $(st)
ZEPHYRLIBS = $(KRB4_LDFLAGS) $(KRB4_LIBS)
ZEPHYRLIBSEXT = $(ZEPHYR_LDFLAGS) $(ZEPHYR_LIBS)
libzephyr_la_LDFLAGS = -module -avoid-version
@STATIC_ZEPHYR_FALSE@st = -Dlint
@STATIC_ZEPHYR_TRUE@st = -DPURPLE_STATIC_PRPL -Dlint
@STATIC_ZEPHYR_TRUE@noinst_LTLIBRARIES = libzephyr.la
@EXTERNAL_LIBZEPHYR_FALSE@@STATIC_ZEPHYR_FALSE@libzephyr_la_SOURCES = $(ZEPHYRSOURCES)
@EXTERNAL_LIBZEPHYR_TRUE@@STATIC_ZEPHYR_FALSE@libzephyr_la_SOURCES = $(ZEPHYRSOURCESEXT)
@STATIC_ZEPHYR_TRUE@libzephyr_la_SOURCES = $(ZEPHYRSOURCES)
@STATIC_ZEPHYR_TRUE@libzephyr_la_CFLAGS = $(AM_CFLAGS)
@EXTERNAL_LIBZEPHYR_FALSE@@STATIC_ZEPHYR_FALSE@libzephyr_la_LIBADD = $(GLIB_LIBS) $(ZEPHYRLIBS)
@EXTERNAL_LIBZEPHYR_TRUE@@STATIC_ZEPHYR_FALSE@libzephyr_la_LIBADD = $(GLIB_LIBS) $(ZEPHYRLIBSEXT)
@STATIC_ZEPHYR_TRUE@libzephyr_la_LIBADD = $(ZEPHYRLIBS)
@STATIC_ZEPHYR_FALSE@pkg_LTLIBRARIES = libzephyr.la
AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-I$(top_srcdir)/libpurple \
	-I$(top_builddir)/libpurple \
	-I$(top_srcdir)/libpurple/protocols \
	-DCONFDIR=\"$(sysconfdir)\" \
	$(GLIB_CFLAGS) \
	$(KRB4_CFLAGS) \
	$(DEBUG_CFLAGS)

all: all-am

.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libpurple/protocols/zephyr/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --gnu libpurple/protocols/zephyr/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
	esac;

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh

$(top_srcdir)/configure:  $(am__configure_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):

clean-noinstLTLIBRARIES:
	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
	@list='$(noinst_LTLIBRARIES)'; \
	locs=`for p in $$list; do echo $$p; done | \
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
	      sort -u`; \
	test -z "$$locs" || { \
	  echo rm -f $${locs}; \
	  rm -f $${locs}; \
	}

install-pkgLTLIBRARIES: $(pkg_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	@list='$(pkg_LTLIBRARIES)'; test -n "$(pkgdir)" || list=; \
	list2=; for p in $$list; do \
	  if test -f $$p; then \
	    list2="$$list2 $$p"; \
	  else :; fi; \
	done; \
	test -z "$$list2" || { \
	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(pkgdir)" || exit 1; \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkgdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkgdir)"; \
	}

uninstall-pkgLTLIBRARIES:
	@$(NORMAL_UNINSTALL)
	@list='$(pkg_LTLIBRARIES)'; test -n "$(pkgdir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkgdir)/$$f'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkgdir)/$$f"; \
	done

clean-pkgLTLIBRARIES:
	-test -z "$(pkg_LTLIBRARIES)" || rm -f $(pkg_LTLIBRARIES)
	@list='$(pkg_LTLIBRARIES)'; \
	locs=`for p in $$list; do echo $$p; done | \
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
	      sort -u`; \
	test -z "$$locs" || { \
	  echo rm -f $${locs}; \
	  rm -f $${locs}; \
	}

libzephyr.la: $(libzephyr_la_OBJECTS) $(libzephyr_la_DEPENDENCIES) $(EXTRA_libzephyr_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(libzephyr_la_LINK) $(am_libzephyr_la_rpath) $(libzephyr_la_OBJECTS) $(libzephyr_la_LIBADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)

distclean-compile:
	-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZAsyncLocate.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZCkAuth.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZCkIfNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZClosePort.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZCmpUID.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZCmpUIDP.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFlsLocs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFlsSubs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtAuth.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtList.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtNotice.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtRaw.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtRawLst.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtSmRLst.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFmtSmRaw.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZFreeNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZGetLocs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZGetSender.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZGetSubs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZGetWGPort.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZIfNotice.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZInit.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZLocations.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZMakeAscii.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZMkAuth.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZNewLocU.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZOpenPort.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZParseNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZPeekIfNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZPeekNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZPeekPkt.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZPending.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZReadAscii.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZRecvNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZRecvPkt.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZRetSubs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSendList.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSendNot.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSendPkt.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSendRLst.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSendRaw.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSetDest.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSetFD.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSetSrv.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZSubs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZVariables.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZWait4Not.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-ZhmStat.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-Zinternal.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-error_message.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-et_name.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-init_et.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-zephyr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libzephyr_la-zephyr_err.Plo@am__quote@ # am--include-marker

$(am__depfiles_remade):
	@$(MKDIR_P) $(@D)
	@echo '# dummy' >$@-t && $(am__mv) $@-t $@

am--depfiles: $(am__depfiles_remade)

.c.o:
@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<

.c.obj:
@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.c.lo:
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<

libzephyr_la-ZAsyncLocate.lo: ZAsyncLocate.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZAsyncLocate.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZAsyncLocate.Tpo -c -o libzephyr_la-ZAsyncLocate.lo `test -f 'ZAsyncLocate.c' || echo '$(srcdir)/'`ZAsyncLocate.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZAsyncLocate.Tpo $(DEPDIR)/libzephyr_la-ZAsyncLocate.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZAsyncLocate.c' object='libzephyr_la-ZAsyncLocate.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZAsyncLocate.lo `test -f 'ZAsyncLocate.c' || echo '$(srcdir)/'`ZAsyncLocate.c

libzephyr_la-ZCkAuth.lo: ZCkAuth.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZCkAuth.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZCkAuth.Tpo -c -o libzephyr_la-ZCkAuth.lo `test -f 'ZCkAuth.c' || echo '$(srcdir)/'`ZCkAuth.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZCkAuth.Tpo $(DEPDIR)/libzephyr_la-ZCkAuth.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZCkAuth.c' object='libzephyr_la-ZCkAuth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZCkAuth.lo `test -f 'ZCkAuth.c' || echo '$(srcdir)/'`ZCkAuth.c

libzephyr_la-ZCkIfNot.lo: ZCkIfNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZCkIfNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZCkIfNot.Tpo -c -o libzephyr_la-ZCkIfNot.lo `test -f 'ZCkIfNot.c' || echo '$(srcdir)/'`ZCkIfNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZCkIfNot.Tpo $(DEPDIR)/libzephyr_la-ZCkIfNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZCkIfNot.c' object='libzephyr_la-ZCkIfNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZCkIfNot.lo `test -f 'ZCkIfNot.c' || echo '$(srcdir)/'`ZCkIfNot.c

libzephyr_la-ZClosePort.lo: ZClosePort.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZClosePort.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZClosePort.Tpo -c -o libzephyr_la-ZClosePort.lo `test -f 'ZClosePort.c' || echo '$(srcdir)/'`ZClosePort.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZClosePort.Tpo $(DEPDIR)/libzephyr_la-ZClosePort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZClosePort.c' object='libzephyr_la-ZClosePort.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZClosePort.lo `test -f 'ZClosePort.c' || echo '$(srcdir)/'`ZClosePort.c

libzephyr_la-ZCmpUID.lo: ZCmpUID.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZCmpUID.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZCmpUID.Tpo -c -o libzephyr_la-ZCmpUID.lo `test -f 'ZCmpUID.c' || echo '$(srcdir)/'`ZCmpUID.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZCmpUID.Tpo $(DEPDIR)/libzephyr_la-ZCmpUID.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZCmpUID.c' object='libzephyr_la-ZCmpUID.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZCmpUID.lo `test -f 'ZCmpUID.c' || echo '$(srcdir)/'`ZCmpUID.c

libzephyr_la-ZCmpUIDP.lo: ZCmpUIDP.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZCmpUIDP.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZCmpUIDP.Tpo -c -o libzephyr_la-ZCmpUIDP.lo `test -f 'ZCmpUIDP.c' || echo '$(srcdir)/'`ZCmpUIDP.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZCmpUIDP.Tpo $(DEPDIR)/libzephyr_la-ZCmpUIDP.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZCmpUIDP.c' object='libzephyr_la-ZCmpUIDP.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZCmpUIDP.lo `test -f 'ZCmpUIDP.c' || echo '$(srcdir)/'`ZCmpUIDP.c

libzephyr_la-ZFlsLocs.lo: ZFlsLocs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFlsLocs.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFlsLocs.Tpo -c -o libzephyr_la-ZFlsLocs.lo `test -f 'ZFlsLocs.c' || echo '$(srcdir)/'`ZFlsLocs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFlsLocs.Tpo $(DEPDIR)/libzephyr_la-ZFlsLocs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFlsLocs.c' object='libzephyr_la-ZFlsLocs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFlsLocs.lo `test -f 'ZFlsLocs.c' || echo '$(srcdir)/'`ZFlsLocs.c

libzephyr_la-ZFlsSubs.lo: ZFlsSubs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFlsSubs.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFlsSubs.Tpo -c -o libzephyr_la-ZFlsSubs.lo `test -f 'ZFlsSubs.c' || echo '$(srcdir)/'`ZFlsSubs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFlsSubs.Tpo $(DEPDIR)/libzephyr_la-ZFlsSubs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFlsSubs.c' object='libzephyr_la-ZFlsSubs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFlsSubs.lo `test -f 'ZFlsSubs.c' || echo '$(srcdir)/'`ZFlsSubs.c

libzephyr_la-ZFmtAuth.lo: ZFmtAuth.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtAuth.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtAuth.Tpo -c -o libzephyr_la-ZFmtAuth.lo `test -f 'ZFmtAuth.c' || echo '$(srcdir)/'`ZFmtAuth.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtAuth.Tpo $(DEPDIR)/libzephyr_la-ZFmtAuth.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtAuth.c' object='libzephyr_la-ZFmtAuth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtAuth.lo `test -f 'ZFmtAuth.c' || echo '$(srcdir)/'`ZFmtAuth.c

libzephyr_la-ZFmtList.lo: ZFmtList.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtList.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtList.Tpo -c -o libzephyr_la-ZFmtList.lo `test -f 'ZFmtList.c' || echo '$(srcdir)/'`ZFmtList.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtList.Tpo $(DEPDIR)/libzephyr_la-ZFmtList.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtList.c' object='libzephyr_la-ZFmtList.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtList.lo `test -f 'ZFmtList.c' || echo '$(srcdir)/'`ZFmtList.c

libzephyr_la-ZFmtNotice.lo: ZFmtNotice.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtNotice.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtNotice.Tpo -c -o libzephyr_la-ZFmtNotice.lo `test -f 'ZFmtNotice.c' || echo '$(srcdir)/'`ZFmtNotice.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtNotice.Tpo $(DEPDIR)/libzephyr_la-ZFmtNotice.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtNotice.c' object='libzephyr_la-ZFmtNotice.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtNotice.lo `test -f 'ZFmtNotice.c' || echo '$(srcdir)/'`ZFmtNotice.c

libzephyr_la-ZFmtRaw.lo: ZFmtRaw.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtRaw.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtRaw.Tpo -c -o libzephyr_la-ZFmtRaw.lo `test -f 'ZFmtRaw.c' || echo '$(srcdir)/'`ZFmtRaw.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtRaw.Tpo $(DEPDIR)/libzephyr_la-ZFmtRaw.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtRaw.c' object='libzephyr_la-ZFmtRaw.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtRaw.lo `test -f 'ZFmtRaw.c' || echo '$(srcdir)/'`ZFmtRaw.c

libzephyr_la-ZFmtRawLst.lo: ZFmtRawLst.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtRawLst.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtRawLst.Tpo -c -o libzephyr_la-ZFmtRawLst.lo `test -f 'ZFmtRawLst.c' || echo '$(srcdir)/'`ZFmtRawLst.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtRawLst.Tpo $(DEPDIR)/libzephyr_la-ZFmtRawLst.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtRawLst.c' object='libzephyr_la-ZFmtRawLst.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtRawLst.lo `test -f 'ZFmtRawLst.c' || echo '$(srcdir)/'`ZFmtRawLst.c

libzephyr_la-ZFmtSmRLst.lo: ZFmtSmRLst.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtSmRLst.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtSmRLst.Tpo -c -o libzephyr_la-ZFmtSmRLst.lo `test -f 'ZFmtSmRLst.c' || echo '$(srcdir)/'`ZFmtSmRLst.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtSmRLst.Tpo $(DEPDIR)/libzephyr_la-ZFmtSmRLst.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtSmRLst.c' object='libzephyr_la-ZFmtSmRLst.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtSmRLst.lo `test -f 'ZFmtSmRLst.c' || echo '$(srcdir)/'`ZFmtSmRLst.c

libzephyr_la-ZFmtSmRaw.lo: ZFmtSmRaw.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFmtSmRaw.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFmtSmRaw.Tpo -c -o libzephyr_la-ZFmtSmRaw.lo `test -f 'ZFmtSmRaw.c' || echo '$(srcdir)/'`ZFmtSmRaw.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFmtSmRaw.Tpo $(DEPDIR)/libzephyr_la-ZFmtSmRaw.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFmtSmRaw.c' object='libzephyr_la-ZFmtSmRaw.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFmtSmRaw.lo `test -f 'ZFmtSmRaw.c' || echo '$(srcdir)/'`ZFmtSmRaw.c

libzephyr_la-ZFreeNot.lo: ZFreeNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZFreeNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZFreeNot.Tpo -c -o libzephyr_la-ZFreeNot.lo `test -f 'ZFreeNot.c' || echo '$(srcdir)/'`ZFreeNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZFreeNot.Tpo $(DEPDIR)/libzephyr_la-ZFreeNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZFreeNot.c' object='libzephyr_la-ZFreeNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZFreeNot.lo `test -f 'ZFreeNot.c' || echo '$(srcdir)/'`ZFreeNot.c

libzephyr_la-ZGetLocs.lo: ZGetLocs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZGetLocs.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZGetLocs.Tpo -c -o libzephyr_la-ZGetLocs.lo `test -f 'ZGetLocs.c' || echo '$(srcdir)/'`ZGetLocs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZGetLocs.Tpo $(DEPDIR)/libzephyr_la-ZGetLocs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZGetLocs.c' object='libzephyr_la-ZGetLocs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZGetLocs.lo `test -f 'ZGetLocs.c' || echo '$(srcdir)/'`ZGetLocs.c

libzephyr_la-ZGetSender.lo: ZGetSender.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZGetSender.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZGetSender.Tpo -c -o libzephyr_la-ZGetSender.lo `test -f 'ZGetSender.c' || echo '$(srcdir)/'`ZGetSender.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZGetSender.Tpo $(DEPDIR)/libzephyr_la-ZGetSender.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZGetSender.c' object='libzephyr_la-ZGetSender.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZGetSender.lo `test -f 'ZGetSender.c' || echo '$(srcdir)/'`ZGetSender.c

libzephyr_la-ZGetSubs.lo: ZGetSubs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZGetSubs.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZGetSubs.Tpo -c -o libzephyr_la-ZGetSubs.lo `test -f 'ZGetSubs.c' || echo '$(srcdir)/'`ZGetSubs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZGetSubs.Tpo $(DEPDIR)/libzephyr_la-ZGetSubs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZGetSubs.c' object='libzephyr_la-ZGetSubs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZGetSubs.lo `test -f 'ZGetSubs.c' || echo '$(srcdir)/'`ZGetSubs.c

libzephyr_la-ZGetWGPort.lo: ZGetWGPort.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZGetWGPort.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZGetWGPort.Tpo -c -o libzephyr_la-ZGetWGPort.lo `test -f 'ZGetWGPort.c' || echo '$(srcdir)/'`ZGetWGPort.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZGetWGPort.Tpo $(DEPDIR)/libzephyr_la-ZGetWGPort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZGetWGPort.c' object='libzephyr_la-ZGetWGPort.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZGetWGPort.lo `test -f 'ZGetWGPort.c' || echo '$(srcdir)/'`ZGetWGPort.c

libzephyr_la-ZIfNotice.lo: ZIfNotice.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZIfNotice.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZIfNotice.Tpo -c -o libzephyr_la-ZIfNotice.lo `test -f 'ZIfNotice.c' || echo '$(srcdir)/'`ZIfNotice.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZIfNotice.Tpo $(DEPDIR)/libzephyr_la-ZIfNotice.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZIfNotice.c' object='libzephyr_la-ZIfNotice.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZIfNotice.lo `test -f 'ZIfNotice.c' || echo '$(srcdir)/'`ZIfNotice.c

libzephyr_la-ZInit.lo: ZInit.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZInit.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZInit.Tpo -c -o libzephyr_la-ZInit.lo `test -f 'ZInit.c' || echo '$(srcdir)/'`ZInit.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZInit.Tpo $(DEPDIR)/libzephyr_la-ZInit.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZInit.c' object='libzephyr_la-ZInit.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZInit.lo `test -f 'ZInit.c' || echo '$(srcdir)/'`ZInit.c

libzephyr_la-ZLocations.lo: ZLocations.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZLocations.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZLocations.Tpo -c -o libzephyr_la-ZLocations.lo `test -f 'ZLocations.c' || echo '$(srcdir)/'`ZLocations.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZLocations.Tpo $(DEPDIR)/libzephyr_la-ZLocations.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZLocations.c' object='libzephyr_la-ZLocations.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZLocations.lo `test -f 'ZLocations.c' || echo '$(srcdir)/'`ZLocations.c

libzephyr_la-ZMakeAscii.lo: ZMakeAscii.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZMakeAscii.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZMakeAscii.Tpo -c -o libzephyr_la-ZMakeAscii.lo `test -f 'ZMakeAscii.c' || echo '$(srcdir)/'`ZMakeAscii.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZMakeAscii.Tpo $(DEPDIR)/libzephyr_la-ZMakeAscii.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZMakeAscii.c' object='libzephyr_la-ZMakeAscii.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZMakeAscii.lo `test -f 'ZMakeAscii.c' || echo '$(srcdir)/'`ZMakeAscii.c

libzephyr_la-ZMkAuth.lo: ZMkAuth.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZMkAuth.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZMkAuth.Tpo -c -o libzephyr_la-ZMkAuth.lo `test -f 'ZMkAuth.c' || echo '$(srcdir)/'`ZMkAuth.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZMkAuth.Tpo $(DEPDIR)/libzephyr_la-ZMkAuth.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZMkAuth.c' object='libzephyr_la-ZMkAuth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZMkAuth.lo `test -f 'ZMkAuth.c' || echo '$(srcdir)/'`ZMkAuth.c

libzephyr_la-ZNewLocU.lo: ZNewLocU.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZNewLocU.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZNewLocU.Tpo -c -o libzephyr_la-ZNewLocU.lo `test -f 'ZNewLocU.c' || echo '$(srcdir)/'`ZNewLocU.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZNewLocU.Tpo $(DEPDIR)/libzephyr_la-ZNewLocU.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZNewLocU.c' object='libzephyr_la-ZNewLocU.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZNewLocU.lo `test -f 'ZNewLocU.c' || echo '$(srcdir)/'`ZNewLocU.c

libzephyr_la-ZOpenPort.lo: ZOpenPort.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZOpenPort.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZOpenPort.Tpo -c -o libzephyr_la-ZOpenPort.lo `test -f 'ZOpenPort.c' || echo '$(srcdir)/'`ZOpenPort.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZOpenPort.Tpo $(DEPDIR)/libzephyr_la-ZOpenPort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZOpenPort.c' object='libzephyr_la-ZOpenPort.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZOpenPort.lo `test -f 'ZOpenPort.c' || echo '$(srcdir)/'`ZOpenPort.c

libzephyr_la-ZParseNot.lo: ZParseNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZParseNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZParseNot.Tpo -c -o libzephyr_la-ZParseNot.lo `test -f 'ZParseNot.c' || echo '$(srcdir)/'`ZParseNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZParseNot.Tpo $(DEPDIR)/libzephyr_la-ZParseNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZParseNot.c' object='libzephyr_la-ZParseNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZParseNot.lo `test -f 'ZParseNot.c' || echo '$(srcdir)/'`ZParseNot.c

libzephyr_la-ZPeekIfNot.lo: ZPeekIfNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZPeekIfNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZPeekIfNot.Tpo -c -o libzephyr_la-ZPeekIfNot.lo `test -f 'ZPeekIfNot.c' || echo '$(srcdir)/'`ZPeekIfNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZPeekIfNot.Tpo $(DEPDIR)/libzephyr_la-ZPeekIfNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZPeekIfNot.c' object='libzephyr_la-ZPeekIfNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZPeekIfNot.lo `test -f 'ZPeekIfNot.c' || echo '$(srcdir)/'`ZPeekIfNot.c

libzephyr_la-ZPeekNot.lo: ZPeekNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZPeekNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZPeekNot.Tpo -c -o libzephyr_la-ZPeekNot.lo `test -f 'ZPeekNot.c' || echo '$(srcdir)/'`ZPeekNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZPeekNot.Tpo $(DEPDIR)/libzephyr_la-ZPeekNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZPeekNot.c' object='libzephyr_la-ZPeekNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZPeekNot.lo `test -f 'ZPeekNot.c' || echo '$(srcdir)/'`ZPeekNot.c

libzephyr_la-ZPeekPkt.lo: ZPeekPkt.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZPeekPkt.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZPeekPkt.Tpo -c -o libzephyr_la-ZPeekPkt.lo `test -f 'ZPeekPkt.c' || echo '$(srcdir)/'`ZPeekPkt.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZPeekPkt.Tpo $(DEPDIR)/libzephyr_la-ZPeekPkt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZPeekPkt.c' object='libzephyr_la-ZPeekPkt.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZPeekPkt.lo `test -f 'ZPeekPkt.c' || echo '$(srcdir)/'`ZPeekPkt.c

libzephyr_la-ZPending.lo: ZPending.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZPending.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZPending.Tpo -c -o libzephyr_la-ZPending.lo `test -f 'ZPending.c' || echo '$(srcdir)/'`ZPending.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZPending.Tpo $(DEPDIR)/libzephyr_la-ZPending.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZPending.c' object='libzephyr_la-ZPending.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZPending.lo `test -f 'ZPending.c' || echo '$(srcdir)/'`ZPending.c

libzephyr_la-ZReadAscii.lo: ZReadAscii.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZReadAscii.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZReadAscii.Tpo -c -o libzephyr_la-ZReadAscii.lo `test -f 'ZReadAscii.c' || echo '$(srcdir)/'`ZReadAscii.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZReadAscii.Tpo $(DEPDIR)/libzephyr_la-ZReadAscii.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZReadAscii.c' object='libzephyr_la-ZReadAscii.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZReadAscii.lo `test -f 'ZReadAscii.c' || echo '$(srcdir)/'`ZReadAscii.c

libzephyr_la-ZRecvNot.lo: ZRecvNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZRecvNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZRecvNot.Tpo -c -o libzephyr_la-ZRecvNot.lo `test -f 'ZRecvNot.c' || echo '$(srcdir)/'`ZRecvNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZRecvNot.Tpo $(DEPDIR)/libzephyr_la-ZRecvNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZRecvNot.c' object='libzephyr_la-ZRecvNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZRecvNot.lo `test -f 'ZRecvNot.c' || echo '$(srcdir)/'`ZRecvNot.c

libzephyr_la-ZRecvPkt.lo: ZRecvPkt.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZRecvPkt.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZRecvPkt.Tpo -c -o libzephyr_la-ZRecvPkt.lo `test -f 'ZRecvPkt.c' || echo '$(srcdir)/'`ZRecvPkt.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZRecvPkt.Tpo $(DEPDIR)/libzephyr_la-ZRecvPkt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZRecvPkt.c' object='libzephyr_la-ZRecvPkt.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZRecvPkt.lo `test -f 'ZRecvPkt.c' || echo '$(srcdir)/'`ZRecvPkt.c

libzephyr_la-ZRetSubs.lo: ZRetSubs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZRetSubs.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZRetSubs.Tpo -c -o libzephyr_la-ZRetSubs.lo `test -f 'ZRetSubs.c' || echo '$(srcdir)/'`ZRetSubs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZRetSubs.Tpo $(DEPDIR)/libzephyr_la-ZRetSubs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZRetSubs.c' object='libzephyr_la-ZRetSubs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZRetSubs.lo `test -f 'ZRetSubs.c' || echo '$(srcdir)/'`ZRetSubs.c

libzephyr_la-ZSendList.lo: ZSendList.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSendList.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSendList.Tpo -c -o libzephyr_la-ZSendList.lo `test -f 'ZSendList.c' || echo '$(srcdir)/'`ZSendList.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSendList.Tpo $(DEPDIR)/libzephyr_la-ZSendList.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSendList.c' object='libzephyr_la-ZSendList.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSendList.lo `test -f 'ZSendList.c' || echo '$(srcdir)/'`ZSendList.c

libzephyr_la-ZSendNot.lo: ZSendNot.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSendNot.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSendNot.Tpo -c -o libzephyr_la-ZSendNot.lo `test -f 'ZSendNot.c' || echo '$(srcdir)/'`ZSendNot.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSendNot.Tpo $(DEPDIR)/libzephyr_la-ZSendNot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSendNot.c' object='libzephyr_la-ZSendNot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSendNot.lo `test -f 'ZSendNot.c' || echo '$(srcdir)/'`ZSendNot.c

libzephyr_la-ZSendPkt.lo: ZSendPkt.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSendPkt.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSendPkt.Tpo -c -o libzephyr_la-ZSendPkt.lo `test -f 'ZSendPkt.c' || echo '$(srcdir)/'`ZSendPkt.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSendPkt.Tpo $(DEPDIR)/libzephyr_la-ZSendPkt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSendPkt.c' object='libzephyr_la-ZSendPkt.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSendPkt.lo `test -f 'ZSendPkt.c' || echo '$(srcdir)/'`ZSendPkt.c

libzephyr_la-ZSendRLst.lo: ZSendRLst.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSendRLst.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSendRLst.Tpo -c -o libzephyr_la-ZSendRLst.lo `test -f 'ZSendRLst.c' || echo '$(srcdir)/'`ZSendRLst.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSendRLst.Tpo $(DEPDIR)/libzephyr_la-ZSendRLst.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSendRLst.c' object='libzephyr_la-ZSendRLst.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSendRLst.lo `test -f 'ZSendRLst.c' || echo '$(srcdir)/'`ZSendRLst.c

libzephyr_la-ZSendRaw.lo: ZSendRaw.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSendRaw.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSendRaw.Tpo -c -o libzephyr_la-ZSendRaw.lo `test -f 'ZSendRaw.c' || echo '$(srcdir)/'`ZSendRaw.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSendRaw.Tpo $(DEPDIR)/libzephyr_la-ZSendRaw.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSendRaw.c' object='libzephyr_la-ZSendRaw.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSendRaw.lo `test -f 'ZSendRaw.c' || echo '$(srcdir)/'`ZSendRaw.c

libzephyr_la-ZSetDest.lo: ZSetDest.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSetDest.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSetDest.Tpo -c -o libzephyr_la-ZSetDest.lo `test -f 'ZSetDest.c' || echo '$(srcdir)/'`ZSetDest.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSetDest.Tpo $(DEPDIR)/libzephyr_la-ZSetDest.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSetDest.c' object='libzephyr_la-ZSetDest.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSetDest.lo `test -f 'ZSetDest.c' || echo '$(srcdir)/'`ZSetDest.c

libzephyr_la-ZSetFD.lo: ZSetFD.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSetFD.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSetFD.Tpo -c -o libzephyr_la-ZSetFD.lo `test -f 'ZSetFD.c' || echo '$(srcdir)/'`ZSetFD.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSetFD.Tpo $(DEPDIR)/libzephyr_la-ZSetFD.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSetFD.c' object='libzephyr_la-ZSetFD.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSetFD.lo `test -f 'ZSetFD.c' || echo '$(srcdir)/'`ZSetFD.c

libzephyr_la-ZSetSrv.lo: ZSetSrv.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSetSrv.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSetSrv.Tpo -c -o libzephyr_la-ZSetSrv.lo `test -f 'ZSetSrv.c' || echo '$(srcdir)/'`ZSetSrv.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSetSrv.Tpo $(DEPDIR)/libzephyr_la-ZSetSrv.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSetSrv.c' object='libzephyr_la-ZSetSrv.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSetSrv.lo `test -f 'ZSetSrv.c' || echo '$(srcdir)/'`ZSetSrv.c

libzephyr_la-ZSubs.lo: ZSubs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZSubs.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZSubs.Tpo -c -o libzephyr_la-ZSubs.lo `test -f 'ZSubs.c' || echo '$(srcdir)/'`ZSubs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZSubs.Tpo $(DEPDIR)/libzephyr_la-ZSubs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZSubs.c' object='libzephyr_la-ZSubs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZSubs.lo `test -f 'ZSubs.c' || echo '$(srcdir)/'`ZSubs.c

libzephyr_la-ZVariables.lo: ZVariables.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZVariables.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZVariables.Tpo -c -o libzephyr_la-ZVariables.lo `test -f 'ZVariables.c' || echo '$(srcdir)/'`ZVariables.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZVariables.Tpo $(DEPDIR)/libzephyr_la-ZVariables.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZVariables.c' object='libzephyr_la-ZVariables.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZVariables.lo `test -f 'ZVariables.c' || echo '$(srcdir)/'`ZVariables.c

libzephyr_la-ZWait4Not.lo: ZWait4Not.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZWait4Not.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZWait4Not.Tpo -c -o libzephyr_la-ZWait4Not.lo `test -f 'ZWait4Not.c' || echo '$(srcdir)/'`ZWait4Not.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZWait4Not.Tpo $(DEPDIR)/libzephyr_la-ZWait4Not.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZWait4Not.c' object='libzephyr_la-ZWait4Not.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZWait4Not.lo `test -f 'ZWait4Not.c' || echo '$(srcdir)/'`ZWait4Not.c

libzephyr_la-ZhmStat.lo: ZhmStat.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-ZhmStat.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-ZhmStat.Tpo -c -o libzephyr_la-ZhmStat.lo `test -f 'ZhmStat.c' || echo '$(srcdir)/'`ZhmStat.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-ZhmStat.Tpo $(DEPDIR)/libzephyr_la-ZhmStat.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='ZhmStat.c' object='libzephyr_la-ZhmStat.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-ZhmStat.lo `test -f 'ZhmStat.c' || echo '$(srcdir)/'`ZhmStat.c

libzephyr_la-Zinternal.lo: Zinternal.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-Zinternal.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-Zinternal.Tpo -c -o libzephyr_la-Zinternal.lo `test -f 'Zinternal.c' || echo '$(srcdir)/'`Zinternal.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-Zinternal.Tpo $(DEPDIR)/libzephyr_la-Zinternal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='Zinternal.c' object='libzephyr_la-Zinternal.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-Zinternal.lo `test -f 'Zinternal.c' || echo '$(srcdir)/'`Zinternal.c

libzephyr_la-error_message.lo: error_message.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-error_message.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-error_message.Tpo -c -o libzephyr_la-error_message.lo `test -f 'error_message.c' || echo '$(srcdir)/'`error_message.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-error_message.Tpo $(DEPDIR)/libzephyr_la-error_message.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='error_message.c' object='libzephyr_la-error_message.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-error_message.lo `test -f 'error_message.c' || echo '$(srcdir)/'`error_message.c

libzephyr_la-et_name.lo: et_name.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-et_name.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-et_name.Tpo -c -o libzephyr_la-et_name.lo `test -f 'et_name.c' || echo '$(srcdir)/'`et_name.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-et_name.Tpo $(DEPDIR)/libzephyr_la-et_name.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='et_name.c' object='libzephyr_la-et_name.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-et_name.lo `test -f 'et_name.c' || echo '$(srcdir)/'`et_name.c

libzephyr_la-init_et.lo: init_et.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-init_et.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-init_et.Tpo -c -o libzephyr_la-init_et.lo `test -f 'init_et.c' || echo '$(srcdir)/'`init_et.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-init_et.Tpo $(DEPDIR)/libzephyr_la-init_et.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='init_et.c' object='libzephyr_la-init_et.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-init_et.lo `test -f 'init_et.c' || echo '$(srcdir)/'`init_et.c

libzephyr_la-zephyr_err.lo: zephyr_err.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-zephyr_err.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-zephyr_err.Tpo -c -o libzephyr_la-zephyr_err.lo `test -f 'zephyr_err.c' || echo '$(srcdir)/'`zephyr_err.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-zephyr_err.Tpo $(DEPDIR)/libzephyr_la-zephyr_err.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='zephyr_err.c' object='libzephyr_la-zephyr_err.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-zephyr_err.lo `test -f 'zephyr_err.c' || echo '$(srcdir)/'`zephyr_err.c

libzephyr_la-zephyr.lo: zephyr.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -MT libzephyr_la-zephyr.lo -MD -MP -MF $(DEPDIR)/libzephyr_la-zephyr.Tpo -c -o libzephyr_la-zephyr.lo `test -f 'zephyr.c' || echo '$(srcdir)/'`zephyr.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libzephyr_la-zephyr.Tpo $(DEPDIR)/libzephyr_la-zephyr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='zephyr.c' object='libzephyr_la-zephyr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libzephyr_la_CFLAGS) $(CFLAGS) -c -o libzephyr_la-zephyr.lo `test -f 'zephyr.c' || echo '$(srcdir)/'`zephyr.c

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

ID: $(am__tagged_files)
	$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags

tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	set x; \
	here=`pwd`; \
	$(am__define_uniq_tagged_files); \
	shift; \
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  if test $$# -gt 0; then \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      "$$@" $$unique; \
	  else \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      $$unique; \
	  fi; \
	fi
ctags: ctags-am

CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	$(am__define_uniq_tagged_files); \
	test -z "$(CTAGS_ARGS)$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && $(am__cd) $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: cscopelist-am

cscopelist-am: $(am__tagged_files)
	list='$(am__tagged_files)'; \
	case "$(srcdir)" in \
	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
	  *) sdir=$(subdir)/$(srcdir) ;; \
	esac; \
	for i in $$list; do \
	  if test -f "$$i"; then \
	    echo "$(subdir)/$$i"; \
	  else \
	    echo "$$sdir/$$i"; \
	  fi; \
	done >> $(top_builddir)/cscope.files

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) distdir-am

distdir-am: $(DISTFILES)
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
check-am: all-am
check: check-am
all-am: Makefile $(LTLIBRARIES)
installdirs:
	for dir in "$(DESTDIR)$(pkgdir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-am
install-strip:
	if test -z '$(STRIP)'; then \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	      install; \
	else \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
	fi
mostlyclean-generic:

clean-generic:

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
clean: clean-am

clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
	clean-pkgLTLIBRARIES mostlyclean-am

distclean: distclean-am
		-rm -f ./$(DEPDIR)/libzephyr_la-ZAsyncLocate.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCkAuth.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCkIfNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZClosePort.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCmpUID.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCmpUIDP.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFlsLocs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFlsSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtAuth.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtList.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtNotice.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtRaw.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtRawLst.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtSmRLst.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtSmRaw.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFreeNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetLocs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetSender.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetWGPort.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZIfNotice.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZInit.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZLocations.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZMakeAscii.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZMkAuth.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZNewLocU.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZOpenPort.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZParseNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPeekIfNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPeekNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPeekPkt.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPending.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZReadAscii.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZRecvNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZRecvPkt.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZRetSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendList.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendPkt.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendRLst.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendRaw.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSetDest.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSetFD.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSetSrv.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZVariables.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZWait4Not.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZhmStat.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-Zinternal.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-error_message.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-et_name.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-init_et.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-zephyr.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-zephyr_err.Plo
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am: install-pkgLTLIBRARIES

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am:

install-html: install-html-am

install-html-am:

install-info: install-info-am

install-info-am:

install-man:

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
		-rm -f ./$(DEPDIR)/libzephyr_la-ZAsyncLocate.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCkAuth.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCkIfNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZClosePort.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCmpUID.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZCmpUIDP.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFlsLocs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFlsSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtAuth.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtList.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtNotice.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtRaw.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtRawLst.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtSmRLst.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFmtSmRaw.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZFreeNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetLocs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetSender.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZGetWGPort.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZIfNotice.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZInit.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZLocations.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZMakeAscii.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZMkAuth.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZNewLocU.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZOpenPort.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZParseNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPeekIfNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPeekNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPeekPkt.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZPending.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZReadAscii.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZRecvNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZRecvPkt.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZRetSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendList.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendNot.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendPkt.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendRLst.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSendRaw.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSetDest.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSetFD.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSetSrv.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZSubs.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZVariables.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZWait4Not.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-ZhmStat.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-Zinternal.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-error_message.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-et_name.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-init_et.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-zephyr.Plo
	-rm -f ./$(DEPDIR)/libzephyr_la-zephyr_err.Plo
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-am

mostlyclean-am: mostlyclean-compile mostlyclean-generic \
	mostlyclean-libtool

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am: uninstall-pkgLTLIBRARIES

.MAKE: install-am install-strip

.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
	clean-generic clean-libtool clean-noinstLTLIBRARIES \
	clean-pkgLTLIBRARIES cscopelist-am ctags ctags-am distclean \
	distclean-compile distclean-generic distclean-libtool \
	distclean-tags distdir dvi dvi-am html html-am info info-am \
	install install-am install-data install-data-am install-dvi \
	install-dvi-am install-exec install-exec-am install-html \
	install-html-am install-info install-info-am install-man \
	install-pdf install-pdf-am install-pkgLTLIBRARIES install-ps \
	install-ps-am install-strip installcheck installcheck-am \
	installdirs maintainer-clean maintainer-clean-generic \
	mostlyclean mostlyclean-compile mostlyclean-generic \
	mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
	uninstall-am uninstall-pkgLTLIBRARIES

.PRECIOUS: Makefile


# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: