summaryrefslogtreecommitdiff
path: root/include/makeinclude/build_dll.bor
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/build_dll.bor')
-rw-r--r--include/makeinclude/build_dll.bor75
1 files changed, 0 insertions, 75 deletions
diff --git a/include/makeinclude/build_dll.bor b/include/makeinclude/build_dll.bor
deleted file mode 100644
index eae45eb5f41..00000000000
--- a/include/makeinclude/build_dll.bor
+++ /dev/null
@@ -1,75 +0,0 @@
-#
-# Rules for linking a dll
-#
-# Inputs:
-# ~~~~~~~
-# NAME - undecorated name of target
-# CFLAGS - extra compiler flags for building target
-# CPPDIR - list of directories containing source files
-# OBJFILES - list of (non-system) object files
-# LIBFILES - list of (non-system) libraries
-# PASCAL - if defined means link dll against pascal run-time library
-# DEBUG - if defined means building with debug information
-#
-
-!include <$(ACE_ROOT)\include\makeinclude\decorator.bor>
-!include <$(ACE_ROOT)\include\makeinclude\outputdir.bor>
-!include <$(ACE_ROOT)\include\makeinclude\compiler.bor>
-
-!ifdef NAME
-TARGET = $(BINDIR)\$(NAME)$(LIB_DECORATOR).dll
-!endif
-
-all: $(TARGET)
- @echo Do nothing >NUL
-
-!ifdef TARGET
-$(TARGET): $(OBJFILES) $(RESOURCE)
- @$(MAKE_BINDIR)
- $(LD) @&&!
- $(COMMON_LFLAGS) $(DLL_LFLAGS) $(LFLAGS) +
- $(DLL_STARTUP_OBJ) $(OBJFILES), +
- $(TARGET),, +
- $(COMMON_LIBS) $(LIBFILES),, +
- $(RESOURCE)
-!
-!ifndef DEBUG
- @del $(TARGET:.dll=.tds)
-!endif
-!endif
-
-!include <$(ACE_ROOT)\include\makeinclude\clean.bor>
-
-INSTALL_TYPES = dll lib includes
-
-!include <$(ACE_ROOT)\include\makeinclude\install.bor>
-
-!ifdef CPPDIR
-.path.cpp = $(CPPDIR)
-!endif
-
-!ifdef CDIR
-.path.c = $(CDIR)
-!endif
-
-!ifdef RESDIR
-.path.rc = $(RESDIR)
-!else
-.path.rc = .
-!endif
-
-.path.obj = $(OBJDIR)
-
-.cpp.obj:
- @$(MAKE_OBJDIR)
- $(CC) $(COMMON_CFLAGS) $(DLL_CFLAGS) $(CFLAGS) -c -n$(@D) $<
-
-.c.obj:
- @$(MAKE_OBJDIR)
- $(CC) $(COMMON_CFLAGS) $(DLL_CFLAGS) $(CFLAGS) -c -n$(@D) $<
-
-.rc.res:
- @$(MAKE_OBJDIR)
- $(RC) -fo$@ $<
-
-.autodepend