~ubuntu-branches/debian/squeeze/kdelibs/squeeze

« back to all changes in this revision

Viewing changes to .pc/97_automake_cleanup.diff/kate/part/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2010-08-07 23:20:21 UTC
  • Revision ID: james.westby@ubuntu.com-20100807232021-owvkgp5wpc076s33
Tags: 4:3.5.10.dfsg.1-5
* Change by email address to @debian.org.
* Drop common HTML docs from kdelibs-data package. Instead suggest
  kdelibs5-data which ships them (Closes: #591609). What's more, whoever
  wants to view docs, will have to install khelpcenter4 which pulls in
  kdelibs5-data anyway.
* Switch to dpkg-source format 3.0 (quilt):
  - drop simple-patchsys.mk from debian/rules;
  - add debian/patches/series file.
* Fix corruption of zip files caused by wrong encoding of umlauts in kzip
  (patch 67_kio_zip_file_encoding.diff). (Closes: #563942) Thanks to Bjoern
  Ricks for the patch.
* Support opening of KDE 4 khelpcenter in Help -> Handbook. (Closes: #525621)
  Thanks to Ben Burton for the patch.
* Do not recurse into .pc subdirectory with doxygen 
  (patch debian/patches/02_exclude_pc_from_dox.diff).
* Urgency=medium due to multiple RC bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
kde_module_LTLIBRARIES = libkatepart.la
 
2
 
 
3
noinst_LTLIBRARIES = libkate.la
 
4
 
 
5
libkate_la_SOURCES = katesearch.cpp katebuffer.cpp katecmds.cpp \
 
6
  kateundo.cpp katecursor.cpp katedialogs.cpp katedocument.cpp \
 
7
  katefactory.cpp katehighlight.cpp katesyntaxdocument.cpp \
 
8
  katetextline.cpp kateview.cpp kateconfig.cpp kateviewhelpers.cpp \
 
9
  katecodecompletion.cpp katedocumenthelpers.cpp \
 
10
  katecodefoldinghelpers.cpp kateviewinternal.cpp katebookmarks.cpp \
 
11
  kateprinter.cpp katefont.cpp katelinerange.cpp katesupercursor.cpp \
 
12
  katearbitraryhighlight.cpp katerenderer.cpp kateattribute.cpp \
 
13
  kateautoindent.cpp katefiletype.cpp kateschema.cpp katedocument.skel \
 
14
  katetemplatehandler.cpp katejscript.cpp katespell.cpp kateindentscriptabstracts.cpp \
 
15
  kateluaindentscript.cpp
 
16
 
 
17
libkatepart_la_SOURCES = dummy.cpp
 
18
 
 
19
libkatepart_la_LIBADD = libkate.la ../interfaces/libkatepartinterfaces.la $(top_builddir)/kdeprint/libkdeprint.la $(top_builddir)/kutils/libkutils.la $(top_builddir)/kjs/libkjs.la $(LUA_LIBS)
 
20
 
 
21
libkatepart_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
 
22
 
 
23
INCLUDES= -I../interfaces -I$(top_srcdir) -I$(top_srcdir)/kdeprint -I$(top_srcdir)/interfaces  -I$(top_srcdir)/interfaces/kregexpeditor -I$(top_srcdir)/kdefx -I$(top_srcdir)/kutils -I$(top_builddir)/kjs $(LUA_INCLUDES) $(all_includes)
 
24
 
 
25
METASOURCES = AUTO
 
26
 
 
27
LUT_FILES = katejscript.lut.h
 
28
 
 
29
CREATE_HASH_TABLE = $(top_srcdir)/kjs/create_hash_table
 
30
 
 
31
dummy.cpp: $(srcdir)/Makefile.am
 
32
        touch $@
 
33
 
 
34
katejscript.lut.h : $(srcdir)/katejscript.cpp $(CREATE_HASH_TABLE)
 
35
        $(PERL) $(CREATE_HASH_TABLE) $(srcdir)/katejscript.cpp > $@
 
36
katejscript.lo: katejscript.lut.h
 
37
 
 
38
CLEANFILES = $(LUT_FILES)
 
39
 
 
40
## test program
 
41
TESTS  = testkateregression
 
42
check_PROGRAMS = testkateregression
 
43
testkateregression_SOURCES = test_regression.cpp
 
44
testkateregression_LDADD = $(libkatepart_la_LIBADD)