source: roaraudio/build-system/Makefile.install @ 5775:80b9c11b4122

Last change on this file since 5775:80b9c11b4122 was 5775:80b9c11b4122, checked in by phi, 11 years ago

cleanup, general improvements and added support to build binaries with RABS

File size: 1.9 KB
Line 
1#     Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2012
2#
3# This file is part of roard a part of RoarAudio,
4# a cross-platform sound system for both, home and professional use.
5# See README for details.
6#
7# This file is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License version 3
9# as published by the Free Software Foundation.
10#
11# RoarAudio is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this software; see the file COPYING.  If not, write to
18# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21RABS_INSTALL_TARGETS_PREP_DIRS    := $(foreach c,$(RABS_INSTALL_TARGETS),prep-install-dirs-$c)
22RABS_INSTALL_TARGETS_INSTALL      := $(foreach c,$(RABS_INSTALL_TARGETS),install-$c)
23RABS_INSTALL_TARGETS_SEMI_INSTALL := $(foreach c,$(RABS_INSTALL_TARGETS),semi-install-$c)
24RABS_INSTALL_TARGETS_UNINSTALL    := $(foreach c,$(RABS_INSTALL_TARGETS),uninstall-$c)
25
26prep-install-dirs: $(RABS_INSTALL_TARGETS_PREP_DIRS)
27prep-install: all prep-install-dirs
28install: $(RABS_INSTALL_TARGETS_INSTALL)
29semi-install: $(RABS_INSTALL_TARGETS_SEMI_INSTALL)
30uninstall: $(RABS_INSTALL_TARGETS_UNINSTALL)
31
32prep-install-dirs-bin:
33        mkdir -p '$(DESTDIR)$(PREFIX_BIN)'
34        mkdir -p '$(DESTDIR)$(PREFIX_MAN)'/man1/
35
36prep-install-bin: all prep-install-dirs-bin
37
38install-bin: prep-install-bin
39        cp $(cp_v) $(TARGET)  '$(DESTDIR)$(PREFIX_BIN)'
40        cp $(cp_v) $(MANPAGE_1) '$(DESTDIR)$(PREFIX_MAN)'/man1/
41semi-install-bin: prep-install-bin
42        ln -fs `pwd`/$(TARGET)  '$(DESTDIR)$(PREFIX_BIN)'
43        ln -fs `pwd`/$(MANPAGE_1) '$(DESTDIR)$(PREFIX_MAN)'/man1/
44uninstall-bin:
45        rm -f '$(DESTDIR)$(PREFIX_BIN)/$(TARGET)'
46        rm -f '$(DESTDIR)$(PREFIX_MAN)/man1/$(MANPAGE_1)'
Note: See TracBrowser for help on using the repository browser.