~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to karbon/shapes/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
 
2
        -I$(srcdir)/.. \
 
3
        -I$(srcdir)/../core \
 
4
        -I$(srcdir)/../commands \
 
5
        $(all_includes)
 
6
 
 
7
noinst_LTLIBRARIES = libkarbonshapes.la
 
8
 
 
9
noinst_HEADERS = \
 
10
        vellipse.h \
 
11
        vpolyline.h \
 
12
        vpolygon.h \
 
13
        vrectangle.h \
 
14
        vsinus.h \
 
15
        vspiral.h \
 
16
        vstar.h
 
17
 
 
18
libkarbonshapes_la_SOURCES = \
 
19
        vellipse.cc \
 
20
        vpolyline.cc \
 
21
        vpolygon.cc \
 
22
        vrectangle.cc \
 
23
        vsinus.cc \
 
24
        vspiral.cc \
 
25
        vstar.cc
 
26
 
 
27
libkarbonshapes_la_METASOURCES = \
 
28
        AUTO
 
29