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