summaryrefslogtreecommitdiff
path: root/include/makeinclude/build_lib.bor
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/build_lib.bor')
-rw-r--r--include/makeinclude/build_lib.bor47
1 files changed, 0 insertions, 47 deletions
diff --git a/include/makeinclude/build_lib.bor b/include/makeinclude/build_lib.bor
deleted file mode 100644
index bc42dafdacd..00000000000
--- a/include/makeinclude/build_lib.bor
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# Rules for building a static library
-#
-# 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>
-
-TARGET = $(BINDIR)\$(NAME)$(LIB_DECORATOR).lib
-
-$(TARGET): $(OBJFILES)
- @$(MAKE_BINDIR)
- $(AR) $(LIB_LFLAGS) $(TARGET) @&&!
- +-$(**: = &^
- +-)
-!
-
-clean:
- @copy &&!
-@del $(OBJFILES:.obj=.obj ^
-@del )
-! clean_$(NAME)~.bat 1> NUL
- -@clean_$(NAME)~.bat 2> NUL
- @del clean_$(NAME)~.bat
-
-!ifdef CPPDIR
-.path.cpp = $(CPPDIR)
-!endif
-
-.path.obj = $(OBJDIR)
-
-.cpp.obj:
- @$(MAKE_OBJDIR)
- $(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) $<
-
-.autodepend
-