diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-17 13:37:50 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-17 13:37:50 +0200 |
commit | 31d80e527e5bd95b948ce7237e4e4c0d1ea1065f (patch) | |
tree | 6349b8231d16fc934e7cec2e861ce7023762d6c6 | |
parent | bcdd5cb8864ae01e42c32fe34f60083aa6184046 (diff) | |
download | vdr-31d80e527e5bd95b948ce7237e4e4c0d1ea1065f.tar.gz vdr-31d80e527e5bd95b948ce7237e4e4c0d1ea1065f.tar.bz2 |
The Makefile now also installs the include files
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | Makefile | 11 |
3 files changed, 11 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a9c74f5a..54ca7cdb 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1893,6 +1893,7 @@ Ville Skyttä <ville.skytta@iki.fi> for adding Language and fixing Language-Team header of *.po for fixing the Language header of the Serbian translation file for using pkg-config to get fribidi, freetype and fontconfig cflags and libs + for making the Makefile also install the include files Steffen Beyer <cpunk@reactor.de> for fixing setting the colored button help after deleting a recording in case the next @@ -6602,3 +6602,4 @@ Video Disk Recorder Revision History - Fixed a possible NULL pointer dereference in osddemo.c (reported by Paul Menzel). - Now using pkg-config to get fribidi, freetype and fontconfig cflags and libs (thanks to Ville Skyttä). +- The Makefile now also installs the include files (thanks to Ville Skyttä). @@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 2.16 2011/04/17 13:29:01 kls Exp $ +# $Id: Makefile 2.17 2011/04/17 13:35:53 kls Exp $ .DELETE_ON_ERROR: @@ -19,6 +19,7 @@ DESTDIR ?= PREFIX ?= /usr/local MANDIR = $(PREFIX)/share/man BINDIR = $(PREFIX)/bin +INCDIR = $(PREFIX)/include LOCDIR = ./locale LIBS = -ljpeg -lpthread -ldl -lcap -lrt $(shell pkg-config --libs freetype2 fontconfig) INCLUDES ?= $(shell pkg-config --cflags freetype2 fontconfig) @@ -162,7 +163,7 @@ clean-plugins: # Install the files: -install: install-bin install-conf install-doc install-plugins install-i18n +install: install-bin install-conf install-doc install-plugins install-i18n install-includes # VDR binary: @@ -193,6 +194,12 @@ install-plugins: plugins @mkdir -p $(DESTDIR)$(PLUGINLIBDIR) @cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(DESTDIR)$(PLUGINLIBDIR) +# Includes: + +install-includes: include-dir + @mkdir -p $(DESTDIR)$(INCDIR) + @cp -pLR include/vdr include/libsi $(DESTDIR)$(INCDIR) + # Source documentation: srcdoc: |