summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@hboeck.de>2008-08-15 17:14:54 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-08-15 17:14:54 -0600
commit4ed6a89da63d2bcfe0a0d2fa997b2695c72ceef6 (patch)
treebd0ae8507dd407436080f2228e19f256246026f9
parent1c5a2ffcf1449815d5bc504d8077e4de17327f26 (diff)
fix DESTDIR omissions
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 12ab2fa..86a0bba 100644
--- a/Makefile
+++ b/Makefile
@@ -26,10 +26,10 @@ OBJECTS = $(GLW_SOURCES:.c=.o)
default: $(TOP)/$(LIB_DIR)/$(GLW_LIB_NAME)
install:
- $(INSTALL) -d $(INSTALL_DIR)/include/GL
- $(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR)
- $(INSTALL) -m 644 *.h $(INSTALL_DIR)/include/GL
- $(INSTALL) $(TOP)/$(LIB_DIR)/libGLw.* $(INSTALL_DIR)/$(LIB_DIR)
+ $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/include/GL
+ $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
+ $(INSTALL) -m 644 *.h $(DESTDIR)$(INSTALL_DIR)/include/GL
+ $(INSTALL) $(TOP)/$(LIB_DIR)/libGLw.* $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
clean:
-rm depend depend.bak