~ubuntu-branches/ubuntu/utopic/gramps/utopic

« back to all changes in this revision

Viewing changes to src/Filters/Rules/Note/Makefile.in

  • Committer: Package Import Robot
  • Author(s): James A. Treacy
  • Date: 2012-05-22 17:18:36 UTC
  • mfrom: (39.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120522171836-35fi62lp4w7jnrd7
Tags: 3.4.0-1
* New upstream version
* Updated desktop file. Closes: #667472

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
@SET_MAKE@
17
17
 
18
18
# This is the src/Filters/Rules/Note level Makefile for Gramps
 
19
# $Id: Makefile.am 18851 2012-02-10 20:25:15Z josipsf $
19
20
VPATH = @srcdir@
 
21
pkgdatadir = $(datadir)/@PACKAGE@
20
22
pkgincludedir = $(includedir)/@PACKAGE@
21
23
pkglibdir = $(libdir)/@PACKAGE@
22
24
pkglibexecdir = $(libexecdir)/@PACKAGE@
33
35
PRE_UNINSTALL = :
34
36
POST_UNINSTALL = :
35
37
subdir = src/Filters/Rules/Note
36
 
DIST_COMMON = $(pkgdata_PYTHON) $(srcdir)/Makefile.am \
 
38
DIST_COMMON = $(pkgpython_PYTHON) $(srcdir)/Makefile.am \
37
39
        $(srcdir)/Makefile.in
38
40
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39
41
am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
66
68
am__base_list = \
67
69
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
68
70
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
69
 
am__installdirs = "$(DESTDIR)$(pkgdatadir)"
 
71
am__installdirs = "$(DESTDIR)$(pkgpythondir)"
70
72
py_compile = $(top_srcdir)/py-compile
71
73
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
72
 
pkgdatadir = $(datadir)/@PACKAGE@/Filters/Rules/Note
73
74
ACLOCAL = @ACLOCAL@
74
75
ALL_LINGUAS = @ALL_LINGUAS@
75
76
AMTAR = @AMTAR@
178
179
oldincludedir = @oldincludedir@
179
180
pdfdir = @pdfdir@
180
181
pkgpyexecdir = @pkgpyexecdir@/Filters/Rules/Note
181
 
pkgpythondir = @pkgpythondir@/Filters/Rules/Note
 
182
pkgpythondir = $(datadir)/@PACKAGE@/Filters/Rules/Note
182
183
prefix = @prefix@
183
184
program_transform_name = @program_transform_name@
184
185
psdir = @psdir@
192
193
top_build_prefix = @top_build_prefix@
193
194
top_builddir = @top_builddir@
194
195
top_srcdir = @top_srcdir@
195
 
pkgdata_PYTHON = \
 
196
pkgpython_PYTHON = \
196
197
        _AllNotes.py\
197
198
        _ChangedSince.py\
198
199
        _HasIdOf.py\
243
244
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
244
245
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
245
246
$(am__aclocal_m4_deps):
246
 
install-pkgdataPYTHON: $(pkgdata_PYTHON)
 
247
install-pkgpythonPYTHON: $(pkgpython_PYTHON)
247
248
        @$(NORMAL_INSTALL)
248
 
        test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
249
 
        @list='$(pkgdata_PYTHON)'; dlist=; list2=; test -n "$(pkgdatadir)" || list=; \
 
249
        test -z "$(pkgpythondir)" || $(MKDIR_P) "$(DESTDIR)$(pkgpythondir)"
 
250
        @list='$(pkgpython_PYTHON)'; dlist=; list2=; test -n "$(pkgpythondir)" || list=; \
250
251
        for p in $$list; do \
251
252
          if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
252
253
          if test -f $$b$$p; then \
257
258
        done; \
258
259
        for file in $$list2; do echo $$file; done | $(am__base_list) | \
259
260
        while read files; do \
260
 
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
261
 
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
 
261
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgpythondir)'"; \
 
262
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgpythondir)" || exit $$?; \
262
263
        done || exit $$?; \
263
264
        if test -n "$$dlist"; then \
264
265
          if test -z "$(DESTDIR)"; then \
265
 
            PYTHON=$(PYTHON) $(py_compile) --basedir "$(pkgdatadir)" $$dlist; \
 
266
            PYTHON=$(PYTHON) $(py_compile) --basedir "$(pkgpythondir)" $$dlist; \
266
267
          else \
267
 
            PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pkgdatadir)" $$dlist; \
 
268
            PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pkgpythondir)" $$dlist; \
268
269
          fi; \
269
270
        else :; fi
270
271
 
271
 
uninstall-pkgdataPYTHON:
 
272
uninstall-pkgpythonPYTHON:
272
273
        @$(NORMAL_UNINSTALL)
273
 
        @list='$(pkgdata_PYTHON)'; test -n "$(pkgdatadir)" || list=; \
 
274
        @list='$(pkgpython_PYTHON)'; test -n "$(pkgpythondir)" || list=; \
274
275
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
275
276
        test -n "$$files" || exit 0; \
276
277
        filesc=`echo "$$files" | sed 's|$$|c|'`; \
277
278
        fileso=`echo "$$files" | sed 's|$$|o|'`; \
278
 
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
279
 
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files || exit $$?; \
280
 
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$filesc ")"; \
281
 
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$filesc || exit $$?; \
282
 
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$fileso ")"; \
283
 
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$fileso
 
279
        echo " ( cd '$(DESTDIR)$(pkgpythondir)' && rm -f" $$files ")"; \
 
280
        cd "$(DESTDIR)$(pkgpythondir)" && rm -f $$files || exit $$?; \
 
281
        echo " ( cd '$(DESTDIR)$(pkgpythondir)' && rm -f" $$filesc ")"; \
 
282
        cd "$(DESTDIR)$(pkgpythondir)" && rm -f $$filesc || exit $$?; \
 
283
        echo " ( cd '$(DESTDIR)$(pkgpythondir)' && rm -f" $$fileso ")"; \
 
284
        cd "$(DESTDIR)$(pkgpythondir)" && rm -f $$fileso
284
285
tags: TAGS
285
286
TAGS:
286
287
 
322
323
check: check-am
323
324
all-am: Makefile
324
325
installdirs:
325
 
        for dir in "$(DESTDIR)$(pkgdatadir)"; do \
 
326
        for dir in "$(DESTDIR)$(pkgpythondir)"; do \
326
327
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
327
328
        done
328
329
install: install-am
371
372
 
372
373
info-am:
373
374
 
374
 
install-data-am: install-pkgdataPYTHON
 
375
install-data-am: install-pkgpythonPYTHON
375
376
 
376
377
install-dvi: install-dvi-am
377
378
 
415
416
 
416
417
ps-am:
417
418
 
418
 
uninstall-am: uninstall-pkgdataPYTHON
 
419
uninstall-am: uninstall-pkgpythonPYTHON
419
420
 
420
421
.MAKE: install-am install-strip
421
422
 
424
425
        install install-am install-data install-data-am install-dvi \
425
426
        install-dvi-am install-exec install-exec-am install-html \
426
427
        install-html-am install-info install-info-am install-man \
427
 
        install-pdf install-pdf-am install-pkgdataPYTHON install-ps \
 
428
        install-pdf install-pdf-am install-pkgpythonPYTHON install-ps \
428
429
        install-ps-am install-strip installcheck installcheck-am \
429
430
        installdirs maintainer-clean maintainer-clean-generic \
430
431
        mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
431
 
        uninstall-am uninstall-pkgdataPYTHON
 
432
        uninstall-am uninstall-pkgpythonPYTHON
432
433
 
433
434
 
434
435
pycheck: 
435
436
        (export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
436
 
        pychecker $(pkgdata_PYTHON));
 
437
        pychecker $(pkgpython_PYTHON));
437
438
 
438
439
# Tell versions [3.59,3.63) of GNU make to not export all variables.
439
440
# Otherwise a system limit (for SysV at least) may be exceeded.