~ubuntu-branches/ubuntu/trusty/rsskit/trusty

« back to all changes in this revision

Viewing changes to .pc/link-libs.patch/GNUmakefile

  • Committer: Package Import Robot
  • Author(s): Yavor Doganov
  • Date: 2012-06-02 12:30:22 UTC
  • Revision ID: package-import@ubuntu.com-20120602123022-hftl11cev2ooj69c
Tags: 0.3-1
Initial release (Closes: #675037).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
include $(GNUSTEP_MAKEFILES)/common.make
 
3
 
 
4
# Compile with gmake coverage=yes, if you want to have coverage analysis output
 
5
ifeq ($(coverage), yes)
 
6
ADDITIONAL_FLAGS += -fprofile-arcs -ftest-coverage
 
7
ADDITIONAL_OBJC_LIBS += -lgcov
 
8
endif
 
9
 
 
10
srcdir = .
 
11
VERSION = 0.3
 
12
PACKAGE_NAME = RSSKit
 
13
 
 
14
# The library to be compiled
 
15
FRAMEWORK_NAME = RSSKit
 
16
 
 
17
# Additional libraries
 
18
RSSKit_LIBRARIES_DEPEND_UPON += $(FND_LIBS)
 
19
 
 
20
# The Objective-C source files to be compiled
 
21
RSSKit_OBJC_FILES = \
 
22
        RSSArticle.m \
 
23
        RSSArticle+Storage.m \
 
24
        RSSFeed.m \
 
25
        RSSFeed+Fetching.m \
 
26
        RSSFeed+Storage.m \
 
27
        DublinCore.m \
 
28
        DOMParser.m \
 
29
        FeedParser.m \
 
30
        RSS10Parser.m \
 
31
        RSS20Parser.m \
 
32
        AtomParser.m \
 
33
        Atom03Parser.m \
 
34
        Atom10Parser.m \
 
35
        RSSArticleCreationListener.m \
 
36
        RSSFactory.m \
 
37
        RSSLinks.m 
 
38
 
 
39
RSSKit_HEADER_FILES = \
 
40
        RSSArticle.h \
 
41
        RSSArticle+Storage.h \
 
42
        RSSArticleProtocol.h \
 
43
        RSSFeed.h \
 
44
        RSSFeedProtocol.h \
 
45
        RSSFeed+Fetching.h \
 
46
        RSSFeed+Storage.h \
 
47
        DublinCore.h \
 
48
        RSSKit.h \
 
49
        DOMParser.h \
 
50
        FeedParser.h \
 
51
        RSS10Parser.h \
 
52
        RSS20Parser.h \
 
53
        AtomParser.h \
 
54
        Atom03Parser.h \
 
55
        Atom10Parser.h \
 
56
        RSSArticleCreationListener.h \
 
57
        NewRSSArticleListener.h \
 
58
        RSSFactory.h \
 
59
        RSSLinks.h 
 
60
 
 
61
RSSKit_HEADER_FILES_DIR = .
 
62
 
 
63
include $(GNUSTEP_MAKEFILES)/aggregate.make
 
64
-include ../../etoile.make
 
65
include $(GNUSTEP_MAKEFILES)/framework.make
 
66
 
 
67
-include GNUmakefile.preamble
 
68
-include GNUmakefile.local
 
69
-include GNUmakefile.postamble
 
70