aboutsummaryrefslogtreecommitdiff
path: root/abstractions/Makefile.dirs
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-17 00:01:55 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-17 00:01:55 +0000
commitd351824253b1af0a53f9a628ee4a9628ab9720a2 (patch)
treeee24538f2a1833606782f96a65e7ed744cdaf512 /abstractions/Makefile.dirs
parent137d4c07d5b0dd5bd0dcb4eb7c74c5ded135c351 (diff)
got everything working properly with the centralized build system
svn path=/trunk/; revision=3951
Diffstat (limited to 'abstractions/Makefile.dirs')
-rw-r--r--abstractions/Makefile.dirs47
1 files changed, 0 insertions, 47 deletions
diff --git a/abstractions/Makefile.dirs b/abstractions/Makefile.dirs
deleted file mode 100644
index 2c43a9d5..00000000
--- a/abstractions/Makefile.dirs
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# 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
-
-# sources
-ABSTRACTIONS_SRC = $(SRC_ROOT_DIR)/abstractions
-DOC_SRC = $(SRC_ROOT_DIR)/doc
-EXTERNALS_SRC = $(SRC_ROOT_DIR)/externals
-FLEXT_SRC = $(SRC_ROOT_DIR)/externals/grill/flext
-GEM_SRC = $(SRC_ROOT_DIR)/Gem
-GEMLIBS_SRC = $(SRC_ROOT_DIR)/GemLibs
-PD_SRC = $(SRC_ROOT_DIR)/pd
-SCRIPTS_SRC = $(SRC_ROOT_DIR)/scripts
-
-
-# destinations
-APPLICATIONS_DEST = $(DOCS_DEST)/examples
-DOCS_DEST = $(INSTALL_PREFIX)/doc
-OBJECTS_DEST = $(INSTALL_PREFIX)/extra
-HELP_DEST = $(DOCS_DEST)/5.reference
-MANUALS_DEST = $(DOCS_DEST)/manuals
-
-#------------------------------------------------------------------------------#
-# DIRECTORY STRUCTURE TARGETS
-#------------------------------------------------------------------------------#
-# first make sure that the directory structure is setup
-$(INSTALL_PREFIX):
- install -d $(INSTALL_PREFIX)
-
-$(APPLICATIONS_DEST): $(INSTALL_PREFIX)
- install -d $(APPLICATIONS_DEST)
-
-$(DOCS_DEST): $(INSTALL_PREFIX)
- install -d $(DOCS_DEST)
-
-$(HELP_DEST): $(INSTALL_PREFIX)
- install -d $(HELP_DEST)
-
-$(MANUALS_DEST): $(INSTALL_PREFIX)
- install -d $(MANUALS_DEST)
-
-$(OBJECTS_DEST): $(INSTALL_PREFIX)
- install -d $(OBJECTS_DEST)
-