summaryrefslogtreecommitdiff
path: root/include/makeinclude/install.bor
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /include/makeinclude/install.bor
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'include/makeinclude/install.bor')
-rw-r--r--include/makeinclude/install.bor37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/makeinclude/install.bor b/include/makeinclude/install.bor
deleted file mode 100644
index dcaf6489a46..00000000000
--- a/include/makeinclude/install.bor
+++ /dev/null
@@ -1,37 +0,0 @@
-#
-# Rules for installing files
-#
-
-# This ugliness is to remove extra spaces from between the items in the list.
-INSTALL_TYPES_1 = $(INSTALL_TYPES) $(BLANK_SPACE)
-INSTALL_TYPES_2 = $(INSTALL_TYPES_1: =%)
-INSTALL_TYPES_3 = $(INSTALL_TYPES_2:%%=%)
-INSTALL_TYPES_4 = $(INSTALL_TYPES_3:%%=%)
-INSTALL_TYPES_5 = $(INSTALL_TYPES_4:%=_install )
-
-!ifdef INSTALL_THIS_TARGET
-install: $(INSTALL_TYPES_5)
-!else
-install:
-!endif
- @echo Do Nothing 1> NUL
-
-exe_install: $(TARGET) $(CORE_TARGET)
- @$(MAKE_INSTALL_EXEDIR)
- -copy "$(TARGET)" $(INSTALL_EXEDIR) 1> NUL
-
-!ifdef DEBUG
-dll_install: $(TARGET) $(TARGET:.dll=.tds)
-!else
-dll_install: $(TARGET)
-!endif
- @$(MAKE_INSTALL_DLLDIR)
- -&copy "$**" $(INSTALL_DLLDIR) 1> NUL
-
-lib_install: $(TARGET:.dll=.lib)
- @$(MAKE_INSTALL_LIBDIR)
- -&copy "$**" $(INSTALL_LIBDIR) 1> NUL
-
-includes_install: $(INCLUDES)
- @$(MAKE_INSTALL_INCDIR)
- -&copy "$**" $(INSTALL_INCDIR) 1> NUL