8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00

Correct typing errors

This commit is contained in:
brodsom 2003-03-26 11:08:18 +00:00
parent 626f19f029
commit 97c76a8579
3 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@
# Contributor(s):
#
#
# $Id: Makefile.in.static.gbak,v 1.3 2002-10-07 01:29:09 skywalker Exp $
# $Id: Makefile.in.static.gbak,v 1.4 2003-03-26 11:08:18 brodsom Exp $
#
ROOT=..
ObjModuleName=static.gbak
@ -57,7 +57,7 @@ Dependencies = $(AllObjects:.o=.d)
gbak_static : $(BIN)/gbak_static
$(BIN)/gbak_static : $(GBAKSTATIC_Objects) $(LIBFBCOMMON_A) $(LIBBSTATIC_A)
$(BIN)/gbak_static : $(GBAKSTATIC_Objects) $(LIBFBCOMMON_A) $(LIBFBSTATIC_A)
$(CXX) $(LINK_OPTS) $(GBAKSTATIC_Objects) -o $@ -L $(LIB) -lfbstatic -lfbcommon $(LINK_LIBS)
# Darwin may need this link as well

View File

@ -27,7 +27,7 @@
# Contributor(s):
#
#
# $Id: Makefile.in.static.isql,v 1.4 2002-10-07 01:29:09 skywalker Exp $
# $Id: Makefile.in.static.isql,v 1.5 2003-03-26 11:08:17 brodsom Exp $
#
ROOT=..
ObjModuleName=static.isql
@ -58,7 +58,7 @@ Dependencies = $(AllObjects:.o=.d)
isql_static : $(ISQL_STATIC)
$(ISQL_STATIC): $(ISQL_Objects) $(LIBFBCOMMON_A) $(LIBBSTATIC_A)
$(ISQL_STATIC): $(ISQL_Objects) $(LIBFBCOMMON_A) $(LIBFBSTATIC_A)
$(LD) $(LINK_OPTS) $(ISQL_Objects) -o $@ -L$(LIB) -lfbstatic -lfbcommon $(LINK_LIBS)

View File

@ -27,7 +27,7 @@
# Contributor(s):
#
#
# $Id: Makefile.in.v5_examples,v 1.5 2003-03-17 12:05:51 eku Exp $
# $Id: Makefile.in.v5_examples,v 1.6 2003-03-26 11:08:17 brodsom Exp $
#
ROOT=../..
ObjModuleName=v5_examples
@ -158,7 +158,7 @@ employee.fdb: empbuild$(EXEC_EXT) $(INPUT_FILES) isql
isql:
-$(LN) $(ISQL_STATIC) isql
empbuild: $(EMPBLD_Objects) $(LIBFBCOMMON_A) $(LIBBSTATIC_A)
empbuild: $(EMPBLD_Objects) $(LIBFBCOMMON_A) $(LIBFBSTATIC_A)
$(EXE_LINK) $(LINK_OPTS) $(EMPBLD_Objects) -o $@ -L$(LIB) -lfbstatic -lfbcommon $(LINK_LIBS)
empbuild.exe: $(EMPBLD_OBJ)
@ -192,7 +192,7 @@ intlbuild.fdb : intlddl.sql intlbld.sql
$(ISQL_STATIC) -i intlbld.sql
intlbld: $(INTLBLD_Objects) $(LIBFBCOMMON_A) $(LIBBSTATIC_A)
intlbld: $(INTLBLD_Objects) $(LIBFBCOMMON_A) $(LIBFBSTATIC_A)
-$(RM) $@
$(EXE_LINK) $(LINK_OPTS) $(INTLBLD_Objects) -o $@ -L$(LIB) -lfbstatic -lfbcommon $(LINK_LIBS)