diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /include/makeinclude/build_lib.bor | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'include/makeinclude/build_lib.bor')
-rw-r--r-- | include/makeinclude/build_lib.bor | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/include/makeinclude/build_lib.bor b/include/makeinclude/build_lib.bor deleted file mode 100644 index 745ce5bc731..00000000000 --- a/include/makeinclude/build_lib.bor +++ /dev/null @@ -1,90 +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 -# UNICODE - if defined when building a unicode lib -# - -# Check if the BASE_BINDIR variable was explicitly specified. -!ifdef BASE_BINDIR -EXPLICIT_BASE_BINDIR = 1 -!endif - -!ifdef INSTALL_THIS_TARGET -!ifndef EXPLICIT_BASE_BINDIR -BINDIR = $(CORE_BINDIR) -!endif -!endif - -!include <$(ACE_ROOT)\include\makeinclude\decorator.bor> -!include <$(ACE_ROOT)\include\makeinclude\outputdir.bor> -!include <$(ACE_ROOT)\include\makeinclude\compiler.bor> - -!ifdef NAME -!ifndef TARGET -TARGET = $(BINDIR)\$(NAME)$(LIB_DECORATOR).lib -!endif -!endif - -all: $(TARGET) - @echo Do nothing >NUL - -!ifdef TARGET -$(TARGET): $(OBJFILES) - @$(MAKE_BINDIR) - -@del $(TARGET) 2>NUL - $(AR) $(LIB_LFLAGS) $(TARGET) @&&! -+ $(**: = &^ -+ ) -! -!endif - -!include <$(ACE_ROOT)\include\makeinclude\clean.bor> - -INSTALL_TYPES = lib includes - -!include <$(ACE_ROOT)\include\makeinclude\install.bor> - -!ifdef CPPDIR -.path.cpp = $(CPPDIR) -!endif - -!ifdef CDIR -.path.c = $(CDIR) -!endif - -.path.obj = $(OBJDIR) - -!ifdef DEBUG -!ifndef NO_FULL_PATH -USE_FULL_PATH = 1 -!endif -!endif - -.cpp.obj: - @$(MAKE_OBJDIR) -!ifdef USE_FULL_PATH - @for /F "delims=;" %i in ('cd') do @echo $(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) %i\$(<:.\=) - @for /F "delims=;" %i in ('cd') do @$(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) %i\$(<:.\=) -!else - $(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) $< -!endif - -.c.obj: - @$(MAKE_OBJDIR) -!ifdef USE_FULL_PATH - @for /F "delims=;" %i in ('cd') do @echo $(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) %i\$(<:.\=) - @for /F "delims=;" %i in ('cd') do @$(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) %i\$(<:.\=) -!else - $(CC) $(COMMON_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c -n$(@D) $< -!endif - -.autodepend |