From 354eac77aacee68f4b0cd93920d0e628ae5e51d9 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Mon, 16 Apr 2007 23:54:57 +0000 Subject: [PATCH] Borland makefile for HBOleAut.lib --- harbour/contrib/ole2/makefile.bc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 harbour/contrib/ole2/makefile.bc diff --git a/harbour/contrib/ole2/makefile.bc b/harbour/contrib/ole2/makefile.bc new file mode 100644 index 0000000000..415f010bf9 --- /dev/null +++ b/harbour/contrib/ole2/makefile.bc @@ -0,0 +1,26 @@ +# +# $Id$ +# + +# makefile for Borland C/C++ 32 bits +# Building of hboleaut.lib - Class TOleAuto for Windows + +INCLUDE_DIR = ..\..\include + +BIN_DIR = ..\..\bin\b32 +OBJ_DIR = ..\..\obj\b32 +LIB_DIR = ..\..\lib\b32 + +$(LIB_DIR)\hboleaut.lib : \ + $(OBJ_DIR)\win32ole.obj \ + $(OBJ_DIR)\w32ole.obj + +$(OBJ_DIR)\win32ole.obj : win32ole.c +$(OBJ_DIR)\w32ole.obj : w32ole.c + +.c.obj: + bcc32 $(CLIBFLAGS) $(C_USR) -c -O2 -DWIN32 -I$(INCLUDE_DIR) -o$@ $< + tlib $(LIB_DIR)\hboleaut.lib -+$@,, + +.prg.c: + $(BIN_DIR)\harbour.exe $< -q0 -w -es2 -gc0 -n -i$(INCLUDE_DIR) -o$@