1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00

use DESTDIR according to my understanding of GNU standards

make DESRDIR a prefix of everything according my understanding
of the GNU standards. This is also useful(/needed) for installing
in Gentoo. Declare BINDIR for bin/program directory.

Signed-off-by: Martin Gysel <me@bearsh.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Martin Gysel 2011-10-17 15:53:59 +02:00 committed by Linus Torvalds
parent f2c61aefa7
commit e9386057b6

View file

@ -6,8 +6,8 @@ INSTALL=install
# these locations seem to work for SuSE and Fedora # these locations seem to work for SuSE and Fedora
# prefix = $(HOME) # prefix = $(HOME)
prefix = /usr prefix = $(DESTDIR)/usr
DESTDIR = $(prefix)/bin BINDIR = $(prefix)/bin
DATADIR = $(prefix)/share DATADIR = $(prefix)/share
DESKTOPDIR = $(DATADIR)/applications DESKTOPDIR = $(DATADIR)/applications
ICONPATH = $(DATADIR)/icons/hicolor ICONPATH = $(DATADIR)/icons/hicolor
@ -59,8 +59,8 @@ $(NAME): $(OBJS)
$(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS) $(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS)
install: $(NAME) install: $(NAME)
$(INSTALL) -d -m 755 $(DESTDIR) $(INSTALL) -d -m 755 $(BINDIR)
$(INSTALL) $(NAME) $(DESTDIR) $(INSTALL) $(NAME) $(BINDIR)
$(INSTALL) -d -m 755 $(DESKTOPDIR) $(INSTALL) -d -m 755 $(DESKTOPDIR)
$(INSTALL) $(DESKTOPFILE) $(DESKTOPDIR) $(INSTALL) $(DESKTOPFILE) $(DESKTOPDIR)
$(INSTALL) -d -m 755 $(ICONDIR) $(INSTALL) -d -m 755 $(ICONDIR)