~ubuntu-branches/debian/sid/kodi/sid

« back to all changes in this revision

Viewing changes to lib/cmyth/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Balint Reczey
  • Date: 2015-08-18 14:16:59 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20150818141659-4lgq2pksj7918osz
Tags: 15.1+dfsg1-1
* New upstream release 15.0
  See http://www.kodi.tv/kodi-15-0-isengard-one-release-to-rule-them-all/
* Depend on libav.*-dev provided by src:ffmpeg
* Recommend udisks2 instead of udisks.
  Udisks has been removed from unstable but support for udisks2 is not
  implemented yet.
* Ship patch helping Jessie backports
* Refresh patches
* Eliminate __DATE__ macros from source to make build more reproducible
* Build-depend on libsdl2.*-dev instead of libsdl.*-dev
* Build-depend on libgif-dev
* Drop obsoleted fix of installed header's include paths
* Refresh include file list included by kodi-addons-dev
* Build depend on libcec (>= 3)
* Build-depend on groovy2 instead of groovy
* Sort build dependencies
* Fix packaging repository URL
* Remove removed files from debian/copyright
* Fix filenames with spaces in debian/copyright
* Ship TexturePacker in kodi-addons-dev in /usr/lib/kodi
* Build depend on libcec-platform-dev
* Stop using embedded gnulib modules in rsxs screensaver (Closes: #795813)
* Add missing copyright paragraphs to d/copyright
* Stop marking files as excluded which are removed from upstream tarball
  already
* Bump standards version to 3.9.6
* New upstream release 15.1
  See http://kodi.tv/kodi-15-1-isengard-maintenance-release/
* Move TexturePacker to kodi-bin
* Stop building TexturePacker statically

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ARCH=@ARCH@
2
 
 
3
 
.PHONY: compile
4
 
 
5
 
DIRS=libcmyth librefmem
6
 
 
7
 
CMYTH_SYSDIR=@abs_top_srcdir@/system
8
 
CMYTH_SO=libcmyth-$(ARCH).so
9
 
CMYTH_LIB=$(CMYTH_SYSDIR)/$(CMYTH_SO)
10
 
 
11
 
all: $(CMYTH_LIB)
12
 
 
13
 
ifeq ($(findstring osx,$(ARCH)), osx)
14
 
$(CMYTH_LIB): libcmyth/libcmyth.a librefmem/librefmem.a
15
 
        $(CC) $(LDFLAGS) -bundle -o $@ @MYSQL_LIBS@ \
16
 
        -Wl,-all_load libcmyth/libcmyth.a librefmem/librefmem.a 
17
 
else
18
 
$(CMYTH_LIB): libcmyth/libcmyth.a librefmem/librefmem.a
19
 
        $(CC) $(LDFLAGS) -shared -fpic -o $@ -Wl,--whole-archive \
20
 
        libcmyth/libcmyth.a librefmem/librefmem.a -Wl,--no-whole-archive @MYSQL_LIBS@
21
 
endif
22
 
 
23
 
libcmyth/libcmyth.a: compile
24
 
        $(MAKE) -C libcmyth
25
 
 
26
 
librefmem/librefmem.a: compile
27
 
        $(MAKE) -C librefmem
28
 
 
29
 
 
30
 
CLEAN_FILES=$(CMYTH_LIB)
31
 
 
32
 
include @abs_top_srcdir@/Makefile.include