-
Notifications
You must be signed in to change notification settings - Fork 41
/
Makefile.in
1552 lines (1402 loc) · 97.8 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Makefile.in generated by automake 1.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@
#
# Copyright (c) 2020 Jonathan Perkin <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
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 = :
bin_PROGRAMS = pkgin$(EXEEXT)
#
# Conditional sources.
#
@HAVE_HUMANIZE_NUMBER_FALSE@am__append_1 = external/humanize_number.c
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps) $(noinst_HEADERS) $(am__DIST_COMMON)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"
PROGRAMS = $(bin_PROGRAMS)
am__pkgin_SOURCES_DIST = actions.c autoremove.c depends.c download.c \
fsops.c impact.c main.c order.c pkg_check.c pkg_infos.c \
pkg_install.c pkg_str.c pkgindb.c pkgindb_queries.c pkglist.c \
preferred.c selection.c sqlite_callbacks.c summary.c tools.c \
external/progressmeter.c external/automatic.c external/dewey.c \
external/fexec.c external/iterate.c external/lpkg.c \
external/opattern.c external/pkgdb.c external/plist.c \
external/var.c external/xwrapper.c external/humanize_number.c
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_1 = external/pkgin-progressmeter.$(OBJEXT)
am__objects_2 = external/pkgin-automatic.$(OBJEXT) \
external/pkgin-dewey.$(OBJEXT) external/pkgin-fexec.$(OBJEXT) \
external/pkgin-iterate.$(OBJEXT) external/pkgin-lpkg.$(OBJEXT) \
external/pkgin-opattern.$(OBJEXT) \
external/pkgin-pkgdb.$(OBJEXT) external/pkgin-plist.$(OBJEXT) \
external/pkgin-var.$(OBJEXT) external/pkgin-xwrapper.$(OBJEXT)
@HAVE_HUMANIZE_NUMBER_FALSE@am__objects_3 = external/pkgin-humanize_number.$(OBJEXT)
am_pkgin_OBJECTS = pkgin-actions.$(OBJEXT) pkgin-autoremove.$(OBJEXT) \
pkgin-depends.$(OBJEXT) pkgin-download.$(OBJEXT) \
pkgin-fsops.$(OBJEXT) pkgin-impact.$(OBJEXT) \
pkgin-main.$(OBJEXT) pkgin-order.$(OBJEXT) \
pkgin-pkg_check.$(OBJEXT) pkgin-pkg_infos.$(OBJEXT) \
pkgin-pkg_install.$(OBJEXT) pkgin-pkg_str.$(OBJEXT) \
pkgin-pkgindb.$(OBJEXT) pkgin-pkgindb_queries.$(OBJEXT) \
pkgin-pkglist.$(OBJEXT) pkgin-preferred.$(OBJEXT) \
pkgin-selection.$(OBJEXT) pkgin-sqlite_callbacks.$(OBJEXT) \
pkgin-summary.$(OBJEXT) pkgin-tools.$(OBJEXT) $(am__objects_1) \
$(am__objects_2) $(am__objects_3)
dist_pkgin_OBJECTS =
nodist_pkgin_OBJECTS =
pkgin_OBJECTS = $(am_pkgin_OBJECTS) $(dist_pkgin_OBJECTS) \
$(nodist_pkgin_OBJECTS)
pkgin_LDADD = $(LDADD)
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@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/pkgin-actions.Po \
./$(DEPDIR)/pkgin-autoremove.Po ./$(DEPDIR)/pkgin-depends.Po \
./$(DEPDIR)/pkgin-download.Po ./$(DEPDIR)/pkgin-fsops.Po \
./$(DEPDIR)/pkgin-impact.Po ./$(DEPDIR)/pkgin-main.Po \
./$(DEPDIR)/pkgin-order.Po ./$(DEPDIR)/pkgin-pkg_check.Po \
./$(DEPDIR)/pkgin-pkg_infos.Po \
./$(DEPDIR)/pkgin-pkg_install.Po ./$(DEPDIR)/pkgin-pkg_str.Po \
./$(DEPDIR)/pkgin-pkgindb.Po \
./$(DEPDIR)/pkgin-pkgindb_queries.Po \
./$(DEPDIR)/pkgin-pkglist.Po ./$(DEPDIR)/pkgin-preferred.Po \
./$(DEPDIR)/pkgin-selection.Po \
./$(DEPDIR)/pkgin-sqlite_callbacks.Po \
./$(DEPDIR)/pkgin-summary.Po ./$(DEPDIR)/pkgin-tools.Po \
external/$(DEPDIR)/pkgin-automatic.Po \
external/$(DEPDIR)/pkgin-dewey.Po \
external/$(DEPDIR)/pkgin-fexec.Po \
external/$(DEPDIR)/pkgin-humanize_number.Po \
external/$(DEPDIR)/pkgin-iterate.Po \
external/$(DEPDIR)/pkgin-lpkg.Po \
external/$(DEPDIR)/pkgin-opattern.Po \
external/$(DEPDIR)/pkgin-pkgdb.Po \
external/$(DEPDIR)/pkgin-plist.Po \
external/$(DEPDIR)/pkgin-progressmeter.Po \
external/$(DEPDIR)/pkgin-var.Po \
external/$(DEPDIR)/pkgin-xwrapper.Po
am__mv = mv -f
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 =
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 = $(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 = $(pkgin_SOURCES) $(dist_pkgin_SOURCES) \
$(nodist_pkgin_SOURCES)
DIST_SOURCES = $(am__pkgin_SOURCES_DIST) $(dist_pkgin_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
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; }; \
}
man1dir = $(mandir)/man1
NROFF = nroff
MANS = $(man1_MANS)
HEADERS = $(noinst_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
config.h.in
# 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_RECURSIVE_TARGETS = cscope
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
README.md TODO compile config.guess config.sub depcomp \
install-sh missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
if test -d "$(distdir)"; then \
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
am__post_remove_distdir = $(am__remove_distdir)
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
DIST_TARGETS = dist-gzip
# Exists only to be overridden by the user if desired.
AM_DISTCHECK_DVI_TARGET = dvi
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LTLIBOBJS = @LTLIBOBJS@
MACHINE_ARCH = @MACHINE_ARCH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKGIN_DBDIR = @PKGIN_DBDIR@
PKG_INSTALL_DIR = @PKG_INSTALL_DIR@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
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_alias = @build_alias@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
#
# External source files imported from elsewhere.
#
openssh_SOURCES = external/progressmeter.c
pkg_install_SOURCES = external/automatic.c external/dewey.c \
external/fexec.c external/iterate.c external/lpkg.c \
external/opattern.c external/pkgdb.c external/plist.c \
external/var.c external/xwrapper.c
pkgin_SOURCES = actions.c autoremove.c depends.c download.c fsops.c \
impact.c main.c order.c pkg_check.c pkg_infos.c pkg_install.c \
pkg_str.c pkgindb.c pkgindb_queries.c pkglist.c preferred.c \
selection.c sqlite_callbacks.c summary.c tools.c \
$(openssh_SOURCES) $(pkg_install_SOURCES) $(am__append_1)
noinst_HEADERS = cmd.h messages.h pkgin.h pkgindb.h tools.h \
external/dewey.h external/humanize_number.h external/lib.h \
external/progressmeter.h external/queue.h
#
# Required defines.
#
pkgin_CPPFLAGS = -DMACHINE_ARCH=\""$(MACHINE_ARCH)"\" \
-DPKGIN_DBDIR=\""$(PKGIN_DBDIR)"\" \
-DPKGIN_VERSION=\""$(VERSION)"\" \
-DPKG_INSTALL_DIR=\""$(PKG_INSTALL_DIR)"\" \
-DPKG_SYSCONFDIR=\""$(sysconfdir)"\" -DPREFIX=\""$(prefix)"\"
#
# Manual pages.
#
man1_MANS = pkgin.1
#
# Generated sources.
#
dist_pkgin_SOURCES = pkgin.1.in pkgin.sql
nodist_pkgin_SOURCES = pkgin.1 pkgindb_create.h
BUILT_SOURCES = $(nodist_pkgin_SOURCES)
CLEANFILES = $(BUILT_SOURCES)
all: $(BUILT_SOURCES) config.h
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .o .obj
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
config.h: stamp-h1
@test -f $@ || rm -f stamp-h1
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f stamp-h1
touch $@
distclean-hdr:
-rm -f config.h stamp-h1
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
fi; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p \
; then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' \
-e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' \
`; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
external/$(am__dirstamp):
@$(MKDIR_P) external
@: > external/$(am__dirstamp)
external/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) external/$(DEPDIR)
@: > external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-progressmeter.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-automatic.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-dewey.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-fexec.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-iterate.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-lpkg.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-opattern.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-pkgdb.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-plist.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-var.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-xwrapper.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
external/pkgin-humanize_number.$(OBJEXT): external/$(am__dirstamp) \
external/$(DEPDIR)/$(am__dirstamp)
pkgin$(EXEEXT): $(pkgin_OBJECTS) $(pkgin_DEPENDENCIES) $(EXTRA_pkgin_DEPENDENCIES)
@rm -f pkgin$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(pkgin_OBJECTS) $(pkgin_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f external/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-actions.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-autoremove.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-depends.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-download.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-fsops.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-impact.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-order.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkg_check.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkg_infos.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkg_install.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkg_str.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkgindb.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkgindb_queries.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-pkglist.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-preferred.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-selection.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-sqlite_callbacks.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-summary.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkgin-tools.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-automatic.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-dewey.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-fexec.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-humanize_number.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-iterate.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-lpkg.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-opattern.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-pkgdb.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-plist.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-progressmeter.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-var.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/$(DEPDIR)/pkgin-xwrapper.Po@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)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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) '$<'`
pkgin-actions.o: actions.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-actions.o -MD -MP -MF $(DEPDIR)/pkgin-actions.Tpo -c -o pkgin-actions.o `test -f 'actions.c' || echo '$(srcdir)/'`actions.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-actions.Tpo $(DEPDIR)/pkgin-actions.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='actions.c' object='pkgin-actions.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-actions.o `test -f 'actions.c' || echo '$(srcdir)/'`actions.c
pkgin-actions.obj: actions.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-actions.obj -MD -MP -MF $(DEPDIR)/pkgin-actions.Tpo -c -o pkgin-actions.obj `if test -f 'actions.c'; then $(CYGPATH_W) 'actions.c'; else $(CYGPATH_W) '$(srcdir)/actions.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-actions.Tpo $(DEPDIR)/pkgin-actions.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='actions.c' object='pkgin-actions.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-actions.obj `if test -f 'actions.c'; then $(CYGPATH_W) 'actions.c'; else $(CYGPATH_W) '$(srcdir)/actions.c'; fi`
pkgin-autoremove.o: autoremove.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-autoremove.o -MD -MP -MF $(DEPDIR)/pkgin-autoremove.Tpo -c -o pkgin-autoremove.o `test -f 'autoremove.c' || echo '$(srcdir)/'`autoremove.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-autoremove.Tpo $(DEPDIR)/pkgin-autoremove.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='autoremove.c' object='pkgin-autoremove.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-autoremove.o `test -f 'autoremove.c' || echo '$(srcdir)/'`autoremove.c
pkgin-autoremove.obj: autoremove.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-autoremove.obj -MD -MP -MF $(DEPDIR)/pkgin-autoremove.Tpo -c -o pkgin-autoremove.obj `if test -f 'autoremove.c'; then $(CYGPATH_W) 'autoremove.c'; else $(CYGPATH_W) '$(srcdir)/autoremove.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-autoremove.Tpo $(DEPDIR)/pkgin-autoremove.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='autoremove.c' object='pkgin-autoremove.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-autoremove.obj `if test -f 'autoremove.c'; then $(CYGPATH_W) 'autoremove.c'; else $(CYGPATH_W) '$(srcdir)/autoremove.c'; fi`
pkgin-depends.o: depends.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-depends.o -MD -MP -MF $(DEPDIR)/pkgin-depends.Tpo -c -o pkgin-depends.o `test -f 'depends.c' || echo '$(srcdir)/'`depends.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-depends.Tpo $(DEPDIR)/pkgin-depends.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='depends.c' object='pkgin-depends.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-depends.o `test -f 'depends.c' || echo '$(srcdir)/'`depends.c
pkgin-depends.obj: depends.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-depends.obj -MD -MP -MF $(DEPDIR)/pkgin-depends.Tpo -c -o pkgin-depends.obj `if test -f 'depends.c'; then $(CYGPATH_W) 'depends.c'; else $(CYGPATH_W) '$(srcdir)/depends.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-depends.Tpo $(DEPDIR)/pkgin-depends.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='depends.c' object='pkgin-depends.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-depends.obj `if test -f 'depends.c'; then $(CYGPATH_W) 'depends.c'; else $(CYGPATH_W) '$(srcdir)/depends.c'; fi`
pkgin-download.o: download.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-download.o -MD -MP -MF $(DEPDIR)/pkgin-download.Tpo -c -o pkgin-download.o `test -f 'download.c' || echo '$(srcdir)/'`download.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-download.Tpo $(DEPDIR)/pkgin-download.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='download.c' object='pkgin-download.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-download.o `test -f 'download.c' || echo '$(srcdir)/'`download.c
pkgin-download.obj: download.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-download.obj -MD -MP -MF $(DEPDIR)/pkgin-download.Tpo -c -o pkgin-download.obj `if test -f 'download.c'; then $(CYGPATH_W) 'download.c'; else $(CYGPATH_W) '$(srcdir)/download.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-download.Tpo $(DEPDIR)/pkgin-download.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='download.c' object='pkgin-download.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-download.obj `if test -f 'download.c'; then $(CYGPATH_W) 'download.c'; else $(CYGPATH_W) '$(srcdir)/download.c'; fi`
pkgin-fsops.o: fsops.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-fsops.o -MD -MP -MF $(DEPDIR)/pkgin-fsops.Tpo -c -o pkgin-fsops.o `test -f 'fsops.c' || echo '$(srcdir)/'`fsops.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-fsops.Tpo $(DEPDIR)/pkgin-fsops.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fsops.c' object='pkgin-fsops.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-fsops.o `test -f 'fsops.c' || echo '$(srcdir)/'`fsops.c
pkgin-fsops.obj: fsops.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-fsops.obj -MD -MP -MF $(DEPDIR)/pkgin-fsops.Tpo -c -o pkgin-fsops.obj `if test -f 'fsops.c'; then $(CYGPATH_W) 'fsops.c'; else $(CYGPATH_W) '$(srcdir)/fsops.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-fsops.Tpo $(DEPDIR)/pkgin-fsops.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fsops.c' object='pkgin-fsops.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-fsops.obj `if test -f 'fsops.c'; then $(CYGPATH_W) 'fsops.c'; else $(CYGPATH_W) '$(srcdir)/fsops.c'; fi`
pkgin-impact.o: impact.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-impact.o -MD -MP -MF $(DEPDIR)/pkgin-impact.Tpo -c -o pkgin-impact.o `test -f 'impact.c' || echo '$(srcdir)/'`impact.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-impact.Tpo $(DEPDIR)/pkgin-impact.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='impact.c' object='pkgin-impact.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-impact.o `test -f 'impact.c' || echo '$(srcdir)/'`impact.c
pkgin-impact.obj: impact.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-impact.obj -MD -MP -MF $(DEPDIR)/pkgin-impact.Tpo -c -o pkgin-impact.obj `if test -f 'impact.c'; then $(CYGPATH_W) 'impact.c'; else $(CYGPATH_W) '$(srcdir)/impact.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-impact.Tpo $(DEPDIR)/pkgin-impact.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='impact.c' object='pkgin-impact.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-impact.obj `if test -f 'impact.c'; then $(CYGPATH_W) 'impact.c'; else $(CYGPATH_W) '$(srcdir)/impact.c'; fi`
pkgin-main.o: main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-main.o -MD -MP -MF $(DEPDIR)/pkgin-main.Tpo -c -o pkgin-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-main.Tpo $(DEPDIR)/pkgin-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='pkgin-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
pkgin-main.obj: main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-main.obj -MD -MP -MF $(DEPDIR)/pkgin-main.Tpo -c -o pkgin-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-main.Tpo $(DEPDIR)/pkgin-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='pkgin-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
pkgin-order.o: order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-order.o -MD -MP -MF $(DEPDIR)/pkgin-order.Tpo -c -o pkgin-order.o `test -f 'order.c' || echo '$(srcdir)/'`order.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-order.Tpo $(DEPDIR)/pkgin-order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='order.c' object='pkgin-order.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-order.o `test -f 'order.c' || echo '$(srcdir)/'`order.c
pkgin-order.obj: order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-order.obj -MD -MP -MF $(DEPDIR)/pkgin-order.Tpo -c -o pkgin-order.obj `if test -f 'order.c'; then $(CYGPATH_W) 'order.c'; else $(CYGPATH_W) '$(srcdir)/order.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-order.Tpo $(DEPDIR)/pkgin-order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='order.c' object='pkgin-order.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-order.obj `if test -f 'order.c'; then $(CYGPATH_W) 'order.c'; else $(CYGPATH_W) '$(srcdir)/order.c'; fi`
pkgin-pkg_check.o: pkg_check.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_check.o -MD -MP -MF $(DEPDIR)/pkgin-pkg_check.Tpo -c -o pkgin-pkg_check.o `test -f 'pkg_check.c' || echo '$(srcdir)/'`pkg_check.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_check.Tpo $(DEPDIR)/pkgin-pkg_check.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_check.c' object='pkgin-pkg_check.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_check.o `test -f 'pkg_check.c' || echo '$(srcdir)/'`pkg_check.c
pkgin-pkg_check.obj: pkg_check.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_check.obj -MD -MP -MF $(DEPDIR)/pkgin-pkg_check.Tpo -c -o pkgin-pkg_check.obj `if test -f 'pkg_check.c'; then $(CYGPATH_W) 'pkg_check.c'; else $(CYGPATH_W) '$(srcdir)/pkg_check.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_check.Tpo $(DEPDIR)/pkgin-pkg_check.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_check.c' object='pkgin-pkg_check.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_check.obj `if test -f 'pkg_check.c'; then $(CYGPATH_W) 'pkg_check.c'; else $(CYGPATH_W) '$(srcdir)/pkg_check.c'; fi`
pkgin-pkg_infos.o: pkg_infos.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_infos.o -MD -MP -MF $(DEPDIR)/pkgin-pkg_infos.Tpo -c -o pkgin-pkg_infos.o `test -f 'pkg_infos.c' || echo '$(srcdir)/'`pkg_infos.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_infos.Tpo $(DEPDIR)/pkgin-pkg_infos.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_infos.c' object='pkgin-pkg_infos.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_infos.o `test -f 'pkg_infos.c' || echo '$(srcdir)/'`pkg_infos.c
pkgin-pkg_infos.obj: pkg_infos.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_infos.obj -MD -MP -MF $(DEPDIR)/pkgin-pkg_infos.Tpo -c -o pkgin-pkg_infos.obj `if test -f 'pkg_infos.c'; then $(CYGPATH_W) 'pkg_infos.c'; else $(CYGPATH_W) '$(srcdir)/pkg_infos.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_infos.Tpo $(DEPDIR)/pkgin-pkg_infos.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_infos.c' object='pkgin-pkg_infos.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_infos.obj `if test -f 'pkg_infos.c'; then $(CYGPATH_W) 'pkg_infos.c'; else $(CYGPATH_W) '$(srcdir)/pkg_infos.c'; fi`
pkgin-pkg_install.o: pkg_install.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_install.o -MD -MP -MF $(DEPDIR)/pkgin-pkg_install.Tpo -c -o pkgin-pkg_install.o `test -f 'pkg_install.c' || echo '$(srcdir)/'`pkg_install.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_install.Tpo $(DEPDIR)/pkgin-pkg_install.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_install.c' object='pkgin-pkg_install.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_install.o `test -f 'pkg_install.c' || echo '$(srcdir)/'`pkg_install.c
pkgin-pkg_install.obj: pkg_install.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_install.obj -MD -MP -MF $(DEPDIR)/pkgin-pkg_install.Tpo -c -o pkgin-pkg_install.obj `if test -f 'pkg_install.c'; then $(CYGPATH_W) 'pkg_install.c'; else $(CYGPATH_W) '$(srcdir)/pkg_install.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_install.Tpo $(DEPDIR)/pkgin-pkg_install.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_install.c' object='pkgin-pkg_install.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_install.obj `if test -f 'pkg_install.c'; then $(CYGPATH_W) 'pkg_install.c'; else $(CYGPATH_W) '$(srcdir)/pkg_install.c'; fi`
pkgin-pkg_str.o: pkg_str.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_str.o -MD -MP -MF $(DEPDIR)/pkgin-pkg_str.Tpo -c -o pkgin-pkg_str.o `test -f 'pkg_str.c' || echo '$(srcdir)/'`pkg_str.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_str.Tpo $(DEPDIR)/pkgin-pkg_str.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_str.c' object='pkgin-pkg_str.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_str.o `test -f 'pkg_str.c' || echo '$(srcdir)/'`pkg_str.c
pkgin-pkg_str.obj: pkg_str.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkg_str.obj -MD -MP -MF $(DEPDIR)/pkgin-pkg_str.Tpo -c -o pkgin-pkg_str.obj `if test -f 'pkg_str.c'; then $(CYGPATH_W) 'pkg_str.c'; else $(CYGPATH_W) '$(srcdir)/pkg_str.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkg_str.Tpo $(DEPDIR)/pkgin-pkg_str.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkg_str.c' object='pkgin-pkg_str.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkg_str.obj `if test -f 'pkg_str.c'; then $(CYGPATH_W) 'pkg_str.c'; else $(CYGPATH_W) '$(srcdir)/pkg_str.c'; fi`
pkgin-pkgindb.o: pkgindb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkgindb.o -MD -MP -MF $(DEPDIR)/pkgin-pkgindb.Tpo -c -o pkgin-pkgindb.o `test -f 'pkgindb.c' || echo '$(srcdir)/'`pkgindb.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkgindb.Tpo $(DEPDIR)/pkgin-pkgindb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkgindb.c' object='pkgin-pkgindb.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkgindb.o `test -f 'pkgindb.c' || echo '$(srcdir)/'`pkgindb.c
pkgin-pkgindb.obj: pkgindb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkgindb.obj -MD -MP -MF $(DEPDIR)/pkgin-pkgindb.Tpo -c -o pkgin-pkgindb.obj `if test -f 'pkgindb.c'; then $(CYGPATH_W) 'pkgindb.c'; else $(CYGPATH_W) '$(srcdir)/pkgindb.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkgindb.Tpo $(DEPDIR)/pkgin-pkgindb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkgindb.c' object='pkgin-pkgindb.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkgindb.obj `if test -f 'pkgindb.c'; then $(CYGPATH_W) 'pkgindb.c'; else $(CYGPATH_W) '$(srcdir)/pkgindb.c'; fi`
pkgin-pkgindb_queries.o: pkgindb_queries.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkgindb_queries.o -MD -MP -MF $(DEPDIR)/pkgin-pkgindb_queries.Tpo -c -o pkgin-pkgindb_queries.o `test -f 'pkgindb_queries.c' || echo '$(srcdir)/'`pkgindb_queries.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkgindb_queries.Tpo $(DEPDIR)/pkgin-pkgindb_queries.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkgindb_queries.c' object='pkgin-pkgindb_queries.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkgindb_queries.o `test -f 'pkgindb_queries.c' || echo '$(srcdir)/'`pkgindb_queries.c
pkgin-pkgindb_queries.obj: pkgindb_queries.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkgindb_queries.obj -MD -MP -MF $(DEPDIR)/pkgin-pkgindb_queries.Tpo -c -o pkgin-pkgindb_queries.obj `if test -f 'pkgindb_queries.c'; then $(CYGPATH_W) 'pkgindb_queries.c'; else $(CYGPATH_W) '$(srcdir)/pkgindb_queries.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkgindb_queries.Tpo $(DEPDIR)/pkgin-pkgindb_queries.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkgindb_queries.c' object='pkgin-pkgindb_queries.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkgindb_queries.obj `if test -f 'pkgindb_queries.c'; then $(CYGPATH_W) 'pkgindb_queries.c'; else $(CYGPATH_W) '$(srcdir)/pkgindb_queries.c'; fi`
pkgin-pkglist.o: pkglist.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkglist.o -MD -MP -MF $(DEPDIR)/pkgin-pkglist.Tpo -c -o pkgin-pkglist.o `test -f 'pkglist.c' || echo '$(srcdir)/'`pkglist.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkglist.Tpo $(DEPDIR)/pkgin-pkglist.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkglist.c' object='pkgin-pkglist.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkglist.o `test -f 'pkglist.c' || echo '$(srcdir)/'`pkglist.c
pkgin-pkglist.obj: pkglist.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-pkglist.obj -MD -MP -MF $(DEPDIR)/pkgin-pkglist.Tpo -c -o pkgin-pkglist.obj `if test -f 'pkglist.c'; then $(CYGPATH_W) 'pkglist.c'; else $(CYGPATH_W) '$(srcdir)/pkglist.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-pkglist.Tpo $(DEPDIR)/pkgin-pkglist.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pkglist.c' object='pkgin-pkglist.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-pkglist.obj `if test -f 'pkglist.c'; then $(CYGPATH_W) 'pkglist.c'; else $(CYGPATH_W) '$(srcdir)/pkglist.c'; fi`
pkgin-preferred.o: preferred.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-preferred.o -MD -MP -MF $(DEPDIR)/pkgin-preferred.Tpo -c -o pkgin-preferred.o `test -f 'preferred.c' || echo '$(srcdir)/'`preferred.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-preferred.Tpo $(DEPDIR)/pkgin-preferred.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='preferred.c' object='pkgin-preferred.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-preferred.o `test -f 'preferred.c' || echo '$(srcdir)/'`preferred.c
pkgin-preferred.obj: preferred.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-preferred.obj -MD -MP -MF $(DEPDIR)/pkgin-preferred.Tpo -c -o pkgin-preferred.obj `if test -f 'preferred.c'; then $(CYGPATH_W) 'preferred.c'; else $(CYGPATH_W) '$(srcdir)/preferred.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-preferred.Tpo $(DEPDIR)/pkgin-preferred.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='preferred.c' object='pkgin-preferred.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-preferred.obj `if test -f 'preferred.c'; then $(CYGPATH_W) 'preferred.c'; else $(CYGPATH_W) '$(srcdir)/preferred.c'; fi`
pkgin-selection.o: selection.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-selection.o -MD -MP -MF $(DEPDIR)/pkgin-selection.Tpo -c -o pkgin-selection.o `test -f 'selection.c' || echo '$(srcdir)/'`selection.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-selection.Tpo $(DEPDIR)/pkgin-selection.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='selection.c' object='pkgin-selection.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-selection.o `test -f 'selection.c' || echo '$(srcdir)/'`selection.c
pkgin-selection.obj: selection.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-selection.obj -MD -MP -MF $(DEPDIR)/pkgin-selection.Tpo -c -o pkgin-selection.obj `if test -f 'selection.c'; then $(CYGPATH_W) 'selection.c'; else $(CYGPATH_W) '$(srcdir)/selection.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-selection.Tpo $(DEPDIR)/pkgin-selection.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='selection.c' object='pkgin-selection.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-selection.obj `if test -f 'selection.c'; then $(CYGPATH_W) 'selection.c'; else $(CYGPATH_W) '$(srcdir)/selection.c'; fi`
pkgin-sqlite_callbacks.o: sqlite_callbacks.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-sqlite_callbacks.o -MD -MP -MF $(DEPDIR)/pkgin-sqlite_callbacks.Tpo -c -o pkgin-sqlite_callbacks.o `test -f 'sqlite_callbacks.c' || echo '$(srcdir)/'`sqlite_callbacks.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-sqlite_callbacks.Tpo $(DEPDIR)/pkgin-sqlite_callbacks.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sqlite_callbacks.c' object='pkgin-sqlite_callbacks.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-sqlite_callbacks.o `test -f 'sqlite_callbacks.c' || echo '$(srcdir)/'`sqlite_callbacks.c
pkgin-sqlite_callbacks.obj: sqlite_callbacks.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-sqlite_callbacks.obj -MD -MP -MF $(DEPDIR)/pkgin-sqlite_callbacks.Tpo -c -o pkgin-sqlite_callbacks.obj `if test -f 'sqlite_callbacks.c'; then $(CYGPATH_W) 'sqlite_callbacks.c'; else $(CYGPATH_W) '$(srcdir)/sqlite_callbacks.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-sqlite_callbacks.Tpo $(DEPDIR)/pkgin-sqlite_callbacks.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sqlite_callbacks.c' object='pkgin-sqlite_callbacks.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-sqlite_callbacks.obj `if test -f 'sqlite_callbacks.c'; then $(CYGPATH_W) 'sqlite_callbacks.c'; else $(CYGPATH_W) '$(srcdir)/sqlite_callbacks.c'; fi`
pkgin-summary.o: summary.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-summary.o -MD -MP -MF $(DEPDIR)/pkgin-summary.Tpo -c -o pkgin-summary.o `test -f 'summary.c' || echo '$(srcdir)/'`summary.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-summary.Tpo $(DEPDIR)/pkgin-summary.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='summary.c' object='pkgin-summary.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-summary.o `test -f 'summary.c' || echo '$(srcdir)/'`summary.c
pkgin-summary.obj: summary.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-summary.obj -MD -MP -MF $(DEPDIR)/pkgin-summary.Tpo -c -o pkgin-summary.obj `if test -f 'summary.c'; then $(CYGPATH_W) 'summary.c'; else $(CYGPATH_W) '$(srcdir)/summary.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-summary.Tpo $(DEPDIR)/pkgin-summary.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='summary.c' object='pkgin-summary.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-summary.obj `if test -f 'summary.c'; then $(CYGPATH_W) 'summary.c'; else $(CYGPATH_W) '$(srcdir)/summary.c'; fi`
pkgin-tools.o: tools.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-tools.o -MD -MP -MF $(DEPDIR)/pkgin-tools.Tpo -c -o pkgin-tools.o `test -f 'tools.c' || echo '$(srcdir)/'`tools.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-tools.Tpo $(DEPDIR)/pkgin-tools.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools.c' object='pkgin-tools.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-tools.o `test -f 'tools.c' || echo '$(srcdir)/'`tools.c
pkgin-tools.obj: tools.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkgin-tools.obj -MD -MP -MF $(DEPDIR)/pkgin-tools.Tpo -c -o pkgin-tools.obj `if test -f 'tools.c'; then $(CYGPATH_W) 'tools.c'; else $(CYGPATH_W) '$(srcdir)/tools.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pkgin-tools.Tpo $(DEPDIR)/pkgin-tools.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tools.c' object='pkgin-tools.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkgin-tools.obj `if test -f 'tools.c'; then $(CYGPATH_W) 'tools.c'; else $(CYGPATH_W) '$(srcdir)/tools.c'; fi`
external/pkgin-progressmeter.o: external/progressmeter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-progressmeter.o -MD -MP -MF external/$(DEPDIR)/pkgin-progressmeter.Tpo -c -o external/pkgin-progressmeter.o `test -f 'external/progressmeter.c' || echo '$(srcdir)/'`external/progressmeter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-progressmeter.Tpo external/$(DEPDIR)/pkgin-progressmeter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/progressmeter.c' object='external/pkgin-progressmeter.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-progressmeter.o `test -f 'external/progressmeter.c' || echo '$(srcdir)/'`external/progressmeter.c
external/pkgin-progressmeter.obj: external/progressmeter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-progressmeter.obj -MD -MP -MF external/$(DEPDIR)/pkgin-progressmeter.Tpo -c -o external/pkgin-progressmeter.obj `if test -f 'external/progressmeter.c'; then $(CYGPATH_W) 'external/progressmeter.c'; else $(CYGPATH_W) '$(srcdir)/external/progressmeter.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-progressmeter.Tpo external/$(DEPDIR)/pkgin-progressmeter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/progressmeter.c' object='external/pkgin-progressmeter.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-progressmeter.obj `if test -f 'external/progressmeter.c'; then $(CYGPATH_W) 'external/progressmeter.c'; else $(CYGPATH_W) '$(srcdir)/external/progressmeter.c'; fi`
external/pkgin-automatic.o: external/automatic.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-automatic.o -MD -MP -MF external/$(DEPDIR)/pkgin-automatic.Tpo -c -o external/pkgin-automatic.o `test -f 'external/automatic.c' || echo '$(srcdir)/'`external/automatic.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-automatic.Tpo external/$(DEPDIR)/pkgin-automatic.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/automatic.c' object='external/pkgin-automatic.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-automatic.o `test -f 'external/automatic.c' || echo '$(srcdir)/'`external/automatic.c
external/pkgin-automatic.obj: external/automatic.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-automatic.obj -MD -MP -MF external/$(DEPDIR)/pkgin-automatic.Tpo -c -o external/pkgin-automatic.obj `if test -f 'external/automatic.c'; then $(CYGPATH_W) 'external/automatic.c'; else $(CYGPATH_W) '$(srcdir)/external/automatic.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-automatic.Tpo external/$(DEPDIR)/pkgin-automatic.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/automatic.c' object='external/pkgin-automatic.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-automatic.obj `if test -f 'external/automatic.c'; then $(CYGPATH_W) 'external/automatic.c'; else $(CYGPATH_W) '$(srcdir)/external/automatic.c'; fi`
external/pkgin-dewey.o: external/dewey.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-dewey.o -MD -MP -MF external/$(DEPDIR)/pkgin-dewey.Tpo -c -o external/pkgin-dewey.o `test -f 'external/dewey.c' || echo '$(srcdir)/'`external/dewey.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-dewey.Tpo external/$(DEPDIR)/pkgin-dewey.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/dewey.c' object='external/pkgin-dewey.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-dewey.o `test -f 'external/dewey.c' || echo '$(srcdir)/'`external/dewey.c
external/pkgin-dewey.obj: external/dewey.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-dewey.obj -MD -MP -MF external/$(DEPDIR)/pkgin-dewey.Tpo -c -o external/pkgin-dewey.obj `if test -f 'external/dewey.c'; then $(CYGPATH_W) 'external/dewey.c'; else $(CYGPATH_W) '$(srcdir)/external/dewey.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-dewey.Tpo external/$(DEPDIR)/pkgin-dewey.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/dewey.c' object='external/pkgin-dewey.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-dewey.obj `if test -f 'external/dewey.c'; then $(CYGPATH_W) 'external/dewey.c'; else $(CYGPATH_W) '$(srcdir)/external/dewey.c'; fi`
external/pkgin-fexec.o: external/fexec.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-fexec.o -MD -MP -MF external/$(DEPDIR)/pkgin-fexec.Tpo -c -o external/pkgin-fexec.o `test -f 'external/fexec.c' || echo '$(srcdir)/'`external/fexec.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-fexec.Tpo external/$(DEPDIR)/pkgin-fexec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/fexec.c' object='external/pkgin-fexec.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-fexec.o `test -f 'external/fexec.c' || echo '$(srcdir)/'`external/fexec.c
external/pkgin-fexec.obj: external/fexec.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-fexec.obj -MD -MP -MF external/$(DEPDIR)/pkgin-fexec.Tpo -c -o external/pkgin-fexec.obj `if test -f 'external/fexec.c'; then $(CYGPATH_W) 'external/fexec.c'; else $(CYGPATH_W) '$(srcdir)/external/fexec.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-fexec.Tpo external/$(DEPDIR)/pkgin-fexec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/fexec.c' object='external/pkgin-fexec.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-fexec.obj `if test -f 'external/fexec.c'; then $(CYGPATH_W) 'external/fexec.c'; else $(CYGPATH_W) '$(srcdir)/external/fexec.c'; fi`
external/pkgin-iterate.o: external/iterate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-iterate.o -MD -MP -MF external/$(DEPDIR)/pkgin-iterate.Tpo -c -o external/pkgin-iterate.o `test -f 'external/iterate.c' || echo '$(srcdir)/'`external/iterate.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-iterate.Tpo external/$(DEPDIR)/pkgin-iterate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/iterate.c' object='external/pkgin-iterate.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-iterate.o `test -f 'external/iterate.c' || echo '$(srcdir)/'`external/iterate.c
external/pkgin-iterate.obj: external/iterate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-iterate.obj -MD -MP -MF external/$(DEPDIR)/pkgin-iterate.Tpo -c -o external/pkgin-iterate.obj `if test -f 'external/iterate.c'; then $(CYGPATH_W) 'external/iterate.c'; else $(CYGPATH_W) '$(srcdir)/external/iterate.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-iterate.Tpo external/$(DEPDIR)/pkgin-iterate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/iterate.c' object='external/pkgin-iterate.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-iterate.obj `if test -f 'external/iterate.c'; then $(CYGPATH_W) 'external/iterate.c'; else $(CYGPATH_W) '$(srcdir)/external/iterate.c'; fi`
external/pkgin-lpkg.o: external/lpkg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-lpkg.o -MD -MP -MF external/$(DEPDIR)/pkgin-lpkg.Tpo -c -o external/pkgin-lpkg.o `test -f 'external/lpkg.c' || echo '$(srcdir)/'`external/lpkg.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-lpkg.Tpo external/$(DEPDIR)/pkgin-lpkg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/lpkg.c' object='external/pkgin-lpkg.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-lpkg.o `test -f 'external/lpkg.c' || echo '$(srcdir)/'`external/lpkg.c
external/pkgin-lpkg.obj: external/lpkg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-lpkg.obj -MD -MP -MF external/$(DEPDIR)/pkgin-lpkg.Tpo -c -o external/pkgin-lpkg.obj `if test -f 'external/lpkg.c'; then $(CYGPATH_W) 'external/lpkg.c'; else $(CYGPATH_W) '$(srcdir)/external/lpkg.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-lpkg.Tpo external/$(DEPDIR)/pkgin-lpkg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/lpkg.c' object='external/pkgin-lpkg.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-lpkg.obj `if test -f 'external/lpkg.c'; then $(CYGPATH_W) 'external/lpkg.c'; else $(CYGPATH_W) '$(srcdir)/external/lpkg.c'; fi`
external/pkgin-opattern.o: external/opattern.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-opattern.o -MD -MP -MF external/$(DEPDIR)/pkgin-opattern.Tpo -c -o external/pkgin-opattern.o `test -f 'external/opattern.c' || echo '$(srcdir)/'`external/opattern.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-opattern.Tpo external/$(DEPDIR)/pkgin-opattern.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/opattern.c' object='external/pkgin-opattern.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-opattern.o `test -f 'external/opattern.c' || echo '$(srcdir)/'`external/opattern.c
external/pkgin-opattern.obj: external/opattern.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-opattern.obj -MD -MP -MF external/$(DEPDIR)/pkgin-opattern.Tpo -c -o external/pkgin-opattern.obj `if test -f 'external/opattern.c'; then $(CYGPATH_W) 'external/opattern.c'; else $(CYGPATH_W) '$(srcdir)/external/opattern.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-opattern.Tpo external/$(DEPDIR)/pkgin-opattern.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='external/opattern.c' object='external/pkgin-opattern.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/pkgin-opattern.obj `if test -f 'external/opattern.c'; then $(CYGPATH_W) 'external/opattern.c'; else $(CYGPATH_W) '$(srcdir)/external/opattern.c'; fi`
external/pkgin-pkgdb.o: external/pkgdb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pkgin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/pkgin-pkgdb.o -MD -MP -MF external/$(DEPDIR)/pkgin-pkgdb.Tpo -c -o external/pkgin-pkgdb.o `test -f 'external/pkgdb.c' || echo '$(srcdir)/'`external/pkgdb.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) external/$(DEPDIR)/pkgin-pkgdb.Tpo external/$(DEPDIR)/pkgin-pkgdb.Po