~ubuntu-branches/debian/sid/geany-plugins/sid

« back to all changes in this revision

Viewing changes to devhelp/src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Evgeni Golov, Evgeni Golov
  • Date: 2011-11-17 20:03:24 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111117200324-8qmu6tuwjtfpv3n7
Tags: 0.21.1-1
[ Evgeni Golov ]
* [f4007f2] Imported Upstream version 0.21.1
* [5ff622d] install plugins from/to /usr/lib/<arch-triplet>/geany
* [75411d7] bump build-dep to geany 0.21
* [db92155] depend on the virtual geany-abi-XX package
* [dd84769] switch to 3.0 (quilt)
* [3ab76d7] drop readme.source
* [233d44c] refresh patch against 0.21.1
* [030bec1] add lintian override for
            documentation-package-not-architecture-independent
* [aba43d7] use debhelper compat level 9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/build/vars.build.mk
 
2
include $(top_srcdir)/build/vars.docs.mk
 
3
 
 
4
plugin = devhelp
 
5
 
 
6
if ENABLE_DEVHELP
 
7
geanyplugins_LTLIBRARIES = devhelp.la
 
8
else
 
9
EXTRA_LTLIBRARIES = devhelp.la
 
10
endif
 
11
 
 
12
devhelp_la_SOURCES = \
 
13
        dhp-codesearch.c \
 
14
        dhp-manpages.c \
 
15
        dhp-object.c \
 
16
        dhp-plugin.c
 
17
 
 
18
EXTRA_DIST = \
 
19
        dhp-settings.c
 
20
 
 
21
noinst_HEADERS = \
 
22
        dhp.h \
 
23
        dhp-plugin.h
 
24
 
 
25
devhelp_la_CFLAGS = \
 
26
        $(AM_CFLAGS) \
 
27
        $(DEVHELP_CFLAGS) \
 
28
        -DDHPLUG_DATA_DIR=\"$(plugindatadir)\"
 
29
 
 
30
devhelp_la_LIBADD = $(DEVHELP_LIBS)
 
31
 
 
32
include $(top_srcdir)/build/cppcheck.mk