summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Levand <geoffrey.levand@am.sony.com>2009-07-09 10:40:43 -0700
committerGeoff Levand <geoffrey.levand@am.sony.com>2009-07-09 10:40:43 -0700
commit7043c5fcdf922b65dcef23bc03795dfd23e0dc61 (patch)
tree67cd11f4b3496054a4f863cde59c2329b793e8cc
parent877e5ba2735fe504c575204803827b5dbc39eeae (diff)
downloadtalos-petitboot-7043c5fcdf922b65dcef23bc03795dfd23e0dc61.tar.gz
talos-petitboot-7043c5fcdf922b65dcef23bc03795dfd23e0dc61.zip
makefile INSTALL variables
Add more INSTALL variables to the makefile. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
-rw-r--r--Makefile.in5
-rw-r--r--rules.mk8
2 files changed, 9 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 01771db..a1818d8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -21,7 +21,12 @@ ENABLE_PS3 = @ENABLE_PS3@
# other programs
INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
SHELL = @SHELL@
+STRIP = @STRIP@
# paths
prefix = @prefix@
diff --git a/rules.mk b/rules.mk
index e743338..3a38957 100644
--- a/rules.mk
+++ b/rules.mk
@@ -120,13 +120,13 @@ parser-test: $(parser_test)
install: all $(rules) $(udhcpc)
$(INSTALL) -d $(DESTDIR)$(sbindir)/
- $(INSTALL) $(daemons) $(uis) $(utils) $(DESTDIR)$(sbindir)/
+ $(INSTALL_PROGRAM) $(daemons) $(uis) $(utils) $(DESTDIR)$(sbindir)/
$(INSTALL) -d $(DESTDIR)$(pkgdatadir)/artwork/
- $(INSTALL) $(addprefix $(top_srcdir)/ui/twin/artwork/,$(artwork)) \
+ $(INSTALL_DATA) $(addprefix $(top_srcdir)/ui/twin/artwork/,$(artwork)) \
$(DESTDIR)$(pkgdatadir)/artwork/
$(INSTALL) -d $(DESTDIR)$(pkgdatadir)/utils
- $(INSTALL) -m 644 $(top_srcdir)/$(rules) $(DESTDIR)$(pkgdatadir)/utils
- $(INSTALL) -m 644 $(top_srcdir)/$(udhcpc) $(DESTDIR)$(pkgdatadir)/utils
+ $(INSTALL_DATA) $(top_srcdir)/$(rules) $(DESTDIR)$(pkgdatadir)/utils
+ $(INSTALL_DATA) $(top_srcdir)/$(udhcpc) $(DESTDIR)$(pkgdatadir)/utils
dist: $(PACKAGE)-$(VERSION).tar.gz
OpenPOWER on IntegriCloud