~ubuntu-branches/ubuntu/vivid/regina-normal/vivid-proposed

« back to all changes in this revision

Viewing changes to kdeui/src/part/foreign/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2011-09-10 07:17:25 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: package-import@ubuntu.com-20110910071725-97n90tywdq60w2cr
Tags: 4.90-1
* New upstream release!
* The user interface has been ported from KDE3 to KDE4 (closes: #556318).
  Re-enabled the GUI as a result.
* The build system has been ported from autotools to cmake.
* The new upstream release builds fine on amd64 (closes: #624882).
* Moved the users' handbook into regina-normal-doc.
* Upgraded several suggests/recommends.  Upgraded regina-normal-mpi to
  depend on mpi-default-bin, and regina-normal to depend on both graphviz
  and regina-normal-doc (which the GUI expends to be present).  Upgraded
  regina-normal to recommend gap.
* Bumped standards-version to 3.9.2.0 (no changes required).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
##
2
 
##  Regina - A Normal Surface Theory Calculator
3
 
##  Makefile Template
4
 
##
5
 
##  Process this file with automake in the top-level directory
6
 
##  to produce Makefile.in.
7
 
##
8
 
 
9
 
KDE_OPTIONS=noautodist
10
 
 
11
 
INCLUDES = @ENGINE_INCLUDES@ $(all_includes) -I$(top_srcdir)/kdeui/src/common
12
 
 
13
 
noinst_LTLIBRARIES = libforeign.la
14
 
 
15
 
noinst_HEADERS = \
16
 
        csvsurfacehandler.h \
17
 
        dehydrationhandler.h \
18
 
        exportdialog.h \
19
 
        importdialog.h \
20
 
        orbhandler.h \
21
 
        packetexporter.h \
22
 
        packetimporter.h \
23
 
        pdfhandler.h \
24
 
        pythonhandler.h \
25
 
        reginahandler.h \
26
 
        snappeahandler.h \
27
 
        sourcehandler.h
28
 
 
29
 
libforeign_la_SOURCES = \
30
 
        csvsurfacehandler.cpp \
31
 
        dehydrationhandler.cpp \
32
 
        exportdialog.cpp \
33
 
        importdialog.cpp \
34
 
        orbhandler.cpp \
35
 
        pdfhandler.cpp \
36
 
        pythonhandler.cpp \
37
 
        reginahandler.cpp \
38
 
        snappeahandler.cpp \
39
 
        sourcehandler.cpp
40
 
 
41
 
METASOURCES = AUTO
42
 
 
43
 
messages: rc.cpp
44
 
        $(XGETTEXT) *.cpp -o $(podir)/regina.pot
45