~ubuntu-branches/ubuntu/edgy/digikam/edgy-proposed

« back to all changes in this revision

Viewing changes to digikam/libs/dcraw/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2006-05-15 01:15:02 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515011502-kpyuz7766hpbuia8
Tags: 0.8.2~rc1-0ubuntu1
* sync with debian (UVF see #44102)
  0.8.2~rc1-0ubuntu1 is identical to debian's 0.8.1+0.8.2-rc1-1.
  Version was changed due to latest 0.8.1.ubuntu-0ubuntu1 upload.
  This version is unfortunately bigger than debian's 0.8.1+0.8.2-rc1-1
* Merge in ubuntu changelog

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
CONFIG_CLEAN_FILES =
51
51
LTLIBRARIES = $(noinst_LTLIBRARIES)
52
52
libdcraw_la_LIBADD =
53
 
am_libdcraw_la_OBJECTS = dcraw_parse.lo
 
53
am_libdcraw_la_OBJECTS = dcraw_parse.lo dcrawbinary.lo
54
54
#>- libdcraw_la_OBJECTS = $(am_libdcraw_la_OBJECTS)
55
 
#>+ 1
56
 
libdcraw_la_OBJECTS = dcraw_parse.lo
 
55
#>+ 4
 
56
libdcraw_la_final_OBJECTS = libdcraw_la.all_cpp.lo 
 
57
libdcraw_la_nofinal_OBJECTS = dcraw_parse.lo dcrawbinary.lo
 
58
@KDE_USE_FINAL_FALSE@libdcraw_la_OBJECTS = $(libdcraw_la_nofinal_OBJECTS)
 
59
@KDE_USE_FINAL_TRUE@libdcraw_la_OBJECTS = $(libdcraw_la_final_OBJECTS)
57
60
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
58
61
depcomp = $(SHELL) $(top_srcdir)/admin/depcomp
59
62
am__depfiles_maybe = depfiles
353
356
INCLUDES = -I$(top_srcdir)/digikam/digikam $(all_includes)
354
357
#>- METASOURCES = AUTO
355
358
noinst_LTLIBRARIES = libdcraw.la
356
 
libdcraw_la_SOURCES = dcraw_parse.cpp
 
359
libdcraw_la_SOURCES = dcraw_parse.cpp dcrawbinary.cpp
357
360
libdcraw_la_LDFLAGS = $(all_libraries) $(KDE_RPATH)
358
361
#>- all: all-am
359
362
#>+ 1
422
425
        -rm -f *.tab.c
423
426
 
424
427
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dcraw_parse.Plo@am__quote@
 
428
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dcrawbinary.Plo@am__quote@
425
429
 
426
430
.cpp.o:
427
431
@am__fastdepCXX_TRUE@   if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
564
568
#>- clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
565
569
#>-     mostlyclean-am
566
570
#>+ 2
567
 
clean-am: clean-bcheck  clean-generic clean-libtool clean-noinstLTLIBRARIES \
 
571
clean-am: clean-bcheck clean-final  clean-generic clean-libtool clean-noinstLTLIBRARIES \
568
572
        mostlyclean-am
569
573
 
570
574
distclean: distclean-am
630
634
.NOEXPORT:
631
635
 
632
636
#>+ 2
633
 
KDE_DIST=rawfiles.h parse.c dcraw_parse.h Makefile.in Makefile.am 
 
637
KDE_DIST=rawfiles.h dcrawbinary.h parse.c dcraw_parse.h Makefile.in Makefile.am 
634
638
 
635
639
#>+ 2
636
640
docs-am:
673
677
        done
674
678
 
675
679
 
 
680
#>+ 11
 
681
libdcraw_la.all_cpp.cpp: $(srcdir)/Makefile.in $(srcdir)/dcraw_parse.cpp $(srcdir)/dcrawbinary.cpp 
 
682
        @echo 'creating libdcraw_la.all_cpp.cpp ...'; \
 
683
        rm -f libdcraw_la.all_cpp.files libdcraw_la.all_cpp.final; \
 
684
        echo "#define KDE_USE_FINAL 1" >> libdcraw_la.all_cpp.final; \
 
685
        for file in dcraw_parse.cpp dcrawbinary.cpp ; do \
 
686
          echo "#include \"$$file\"" >> libdcraw_la.all_cpp.files; \
 
687
          test ! -f $(srcdir)/$$file || egrep '^#pragma +implementation' $(srcdir)/$$file >> libdcraw_la.all_cpp.final; \
 
688
        done; \
 
689
        cat libdcraw_la.all_cpp.final libdcraw_la.all_cpp.files > libdcraw_la.all_cpp.cpp; \
 
690
        rm -f libdcraw_la.all_cpp.final libdcraw_la.all_cpp.files
 
691
 
 
692
#>+ 3
 
693
clean-final:
 
694
        -rm -f libdcraw_la.all_cpp.cpp
 
695
 
676
696
#>+ 3
677
697
final:
678
 
        $(MAKE) all-am
 
698
        $(MAKE) libdcraw_la_OBJECTS="$(libdcraw_la_final_OBJECTS)" all-am
679
699
 
680
700
#>+ 3
681
701
final-install:
682
 
        $(MAKE) install-am
 
702
        $(MAKE) libdcraw_la_OBJECTS="$(libdcraw_la_final_OBJECTS)" install-am
683
703
 
684
704
#>+ 3
685
705
no-final:
686
 
        $(MAKE) all-am
 
706
        $(MAKE) libdcraw_la_OBJECTS="$(libdcraw_la_nofinal_OBJECTS)" all-am
687
707
 
688
708
#>+ 3
689
709
no-final-install:
690
 
        $(MAKE) install-am
 
710
        $(MAKE) libdcraw_la_OBJECTS="$(libdcraw_la_nofinal_OBJECTS)" install-am
691
711
 
692
712
#>+ 3
693
713
kde-rpo-clean: