aboutsummaryrefslogtreecommitdiff
path: root/abstractions/Makefile.dirs
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-16 06:23:09 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-16 06:23:09 +0000
commite2297eb6c03cd4cb531e62b0ed3d58e4bdaa470b (patch)
treea02b7beed0527d30558547d19b74dd87bc5fcde6 /abstractions/Makefile.dirs
parent5a27c0d8f1dcad75f0744e90adc4d0956d3eb94e (diff)
renamed _DST to _DEST for the sake of clarity
svn path=/trunk/; revision=3941
Diffstat (limited to 'abstractions/Makefile.dirs')
-rw-r--r--abstractions/Makefile.dirs30
1 files changed, 17 insertions, 13 deletions
diff --git a/abstractions/Makefile.dirs b/abstractions/Makefile.dirs
index 9dc451bf..6933557e 100644
--- a/abstractions/Makefile.dirs
+++ b/abstractions/Makefile.dirs
@@ -1,4 +1,8 @@
-#
+
+# this file should be exactly the same in each section of the CVS. A copy is
+# kept in each section of the CVS so that each section will be
+# self-sufficient. <hans@at.or.at>
+
# $(INSTALL_PREFIX) and $(SRC_ROOT_DIR) are set in Makefile
# base
@@ -10,10 +14,10 @@ DOCS_SRC = $(SRC_ROOT_DIR)/doc
EXTERNALS_SRC = $(SRC_ROOT_DIR)/externals
# destinations
-APPLICATIONS_DST = $(DOCS_BASE)/examples
-OBJECTS_DST = $(INSTALL_PREFIX)/extra
-DOCS_DST = $(DOCS_BASE)/5.reference
-MANUALS_DST = $(DOCS_BASE)/manuals
+APPLICATIONS_DEST = $(DOCS_BASE)/examples
+OBJECTS_DEST = $(INSTALL_PREFIX)/extra
+DOCS_DEST = $(DOCS_BASE)/5.reference
+MANUALS_DEST = $(DOCS_BASE)/manuals
#------------------------------------------------------------------------------#
# DIRECTORY STRUCTURE TARGETS
@@ -22,14 +26,14 @@ MANUALS_DST = $(DOCS_BASE)/manuals
$(INSTALL_PREFIX):
install -d $(INSTALL_PREFIX)
-$(APPLICATIONS_DST): $(INSTALL_PREFIX)
- install -d $(APPLICATIONS_DST)
+$(APPLICATIONS_DEST): $(INSTALL_PREFIX)
+ install -d $(APPLICATIONS_DEST)
-$(OBJECTS_DST): $(INSTALL_PREFIX)
- install -d $(OBJECTS_DST)
+$(OBJECTS_DEST): $(INSTALL_PREFIX)
+ install -d $(OBJECTS_DEST)
-$(DOCS_DST): $(INSTALL_PREFIX)
- install -d $(DOCS_DST)
+$(DOCS_DEST): $(INSTALL_PREFIX)
+ install -d $(DOCS_DEST)
-$(MANUALS_DST): $(INSTALL_PREFIX)
- install -d $(MANUALS_DST)
+$(MANUALS_DEST): $(INSTALL_PREFIX)
+ install -d $(MANUALS_DEST)