~ubuntu-branches/ubuntu/precise/gtk+2.0/precise-updates

« back to all changes in this revision

Viewing changes to gdk/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-09-08 20:30:15 UTC
  • mfrom: (1.14.10 upstream)
  • Revision ID: package-import@ubuntu.com-20110908203015-hmdoq5jt1bl50nq3
Tags: 2.24.6-0ubuntu1
* debian/watch: Look for bz2 tarballs, and restrict to GTK 2 versions.
* New upstream bug fix release.
* Drop 094_git_fileselector_error.patch, include_m4_dir.patch: Included
  upstream.
* 003_gdk.pc_privates.patch, 009_gtk-export-filechooser.patch: Unfuzz.
* debian/libgail-doc.install, debian/libgtk2.0-doc.install.in: Install
  documentation from the source tree, as it's not being installed any more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
194
194
introspection_files =           \
195
195
        $(filter-out gdkkeysyms-compat.h, $(gdk_public_h_sources))      \
196
196
        $(gdk_c_sources)        \
197
 
        gdkkeynames.c           \
 
197
        gdkkeynames.c           \
198
198
        gdkenumtypes.c          \
199
199
        gdkenumtypes.h
200
200
 
367
367
        cd $(top_builddir) && $(SHELL) ./config.status gdk/gdkconfig.h
368
368
        echo timestamp > stamp-gc-h
369
369
 
370
 
dist-hook: ../build/win32/vs9/gdk.vcproj
 
370
dist-hook: ../build/win32/vs9/gdk.vcproj ../build/win32/vs10/gdk.vcxproj ../build/win32/vs10/gdk.vcxproj.filters
371
371
 
372
372
../build/win32/vs9/gdk.vcproj: ../build/win32/vs9/gdk.vcprojin
373
373
        for F in $(libgdk_win32_2_0_la_SOURCES); do \
378
378
        done >libgdk.sourcefiles
379
379
        $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gdk.vcprojin >$@
380
380
        rm libgdk.sourcefiles
 
381
        
 
382
../build/win32/vs10/gdk.vcxproj: ../build/win32/vs10/gdk.vcxprojin
 
383
        for F in $(libgdk_win32_2_0_la_SOURCES); do \
 
384
                case $$F in \
 
385
                *.c) echo '   <ClCompile Include="..\..\..\gdk\'$$F'" />' \
 
386
                     ;; \
 
387
                esac; \
 
388
        done >libgdk.vs10.sourcefiles
 
389
        $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gdk.vcxprojin >$@
 
390
        rm libgdk.vs10.sourcefiles
 
391
        
 
392
../build/win32/vs10/gdk.vcxproj.filters: ../build/win32/vs10/gdk.vcxproj.filtersin
 
393
        for F in $(libgdk_win32_2_0_la_SOURCES); do \
 
394
                case $$F in \
 
395
                *.c) echo '   <ClCompile Include="..\..\..\gdk\'$$F'"><Filter>Source Files</Filter></ClCompile>' \
 
396
                     ;; \
 
397
                esac; \
 
398
        done >libgdk.vs10.sourcefiles.filters
 
399
        $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gdk.vcxproj.filtersin >$@
 
400
        rm libgdk.vs10.sourcefiles.filters
381
401
 
382
402
DISTCLEANFILES = gdkconfig.h stamp-gc-h
383
403