Subject | Re: [firebird-support] Help Me |
---|---|
Author | lester cuevas |
Post date | 2005-09-16T06:32:47Z |
Hi Ann,
With regards to your question I'm includes the RMake file codes we are using. Please see below:
******* Start of RMake file ********
# CHANGE this definition to point to your InterBase installation directory
# ---------------------------------------------------------------------
IBASE= /opt/firebird
# ---------------------------------------------------------------------
# General InterBase Defines for Linux
# ---------------------------------------------------------------------
GPRE= $(IBASE)/bin/gpre -c -n
GPRE_M= $(IBASE)/bin/gpre -c -n -m
ISQL= $(IBASE)/bin/isql
DB02= CIFHOST
DB01= $(FRONTIER)/database_files/$(DB02).GDB
EC2 = s_asm_ssm001
EC= $(FRONTIER)/esql_files/$(EC2)
# ---------------------------------------------------------------------
# General Compiler and linker Defines for Linux
# ---------------------------------------------------------------------
CC= gcc
LINK= gcc
LIB_LINK= ld
CFLAGS= -c -w -I$(IBASE)/include -DDEBUG
#CFLAGS= -c -w -I$(IBASE)/include
LIB_CFLAGS= -fPIC $(CFLAGS)
LINK_FLAGS= -lgds -ldl -lcrypt
LIB_LINK_FLAGS= -shared -lgds
RM= rm -f
# ---------------------------------------------------------------------
.SUFFIXES: .o .c .e
.e.c:
$(GPRE) $< -d $(DB01)
.c.o:
$(CC) $< $(CFLAGS) $@
.o:
$(LINK) -o $@ $< $(LINK_FLAGS)
$(EC).c: $(EC).e
$(GPRE) -d $(DB01) $<
******* End of Rmake file *******
thank you very much.
"Ann W. Harrison" <aharrison@...> wrote:
Lester B. Cuevas wrote:
that at least one of them is multi-file.
What switches are you using with gpre?
Regards,
Ann
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Visit http://firebird.sourceforge.net and click the Resources item
on the main (top) menu. Try Knowledgebase and FAQ links !
Also search the knowledgebases at http://www.ibphoenix.com
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPONSORED LINKS
Technical support Computer technical support Compaq computer technical support Compaq technical support Hewlett packard technical support Technical support services
---------------------------------
YAHOO! GROUPS LINKS
Visit your group "firebird-support" on the web.
To unsubscribe from this group, send an email to:
firebird-support-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
---------------------------------
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[Non-text portions of this message have been removed]
With regards to your question I'm includes the RMake file codes we are using. Please see below:
******* Start of RMake file ********
# CHANGE this definition to point to your InterBase installation directory
# ---------------------------------------------------------------------
IBASE= /opt/firebird
# ---------------------------------------------------------------------
# General InterBase Defines for Linux
# ---------------------------------------------------------------------
GPRE= $(IBASE)/bin/gpre -c -n
GPRE_M= $(IBASE)/bin/gpre -c -n -m
ISQL= $(IBASE)/bin/isql
DB02= CIFHOST
DB01= $(FRONTIER)/database_files/$(DB02).GDB
EC2 = s_asm_ssm001
EC= $(FRONTIER)/esql_files/$(EC2)
# ---------------------------------------------------------------------
# General Compiler and linker Defines for Linux
# ---------------------------------------------------------------------
CC= gcc
LINK= gcc
LIB_LINK= ld
CFLAGS= -c -w -I$(IBASE)/include -DDEBUG
#CFLAGS= -c -w -I$(IBASE)/include
LIB_CFLAGS= -fPIC $(CFLAGS)
LINK_FLAGS= -lgds -ldl -lcrypt
LIB_LINK_FLAGS= -shared -lgds
RM= rm -f
# ---------------------------------------------------------------------
.SUFFIXES: .o .c .e
.e.c:
$(GPRE) $< -d $(DB01)
.c.o:
$(CC) $< $(CFLAGS) $@
.o:
$(LINK) -o $@ $< $(LINK_FLAGS)
$(EC).c: $(EC).e
$(GPRE) -d $(DB01) $<
******* End of Rmake file *******
thank you very much.
"Ann W. Harrison" <aharrison@...> wrote:
Lester B. Cuevas wrote:
> Hi there...It is possible to make multiple (.e) --Embedded SQL in myYes it is. Look first at the examples that come with the kit, I think
> project...
that at least one of them is multi-file.
What switches are you using with gpre?
Regards,
Ann
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Visit http://firebird.sourceforge.net and click the Resources item
on the main (top) menu. Try Knowledgebase and FAQ links !
Also search the knowledgebases at http://www.ibphoenix.com
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPONSORED LINKS
Technical support Computer technical support Compaq computer technical support Compaq technical support Hewlett packard technical support Technical support services
---------------------------------
YAHOO! GROUPS LINKS
Visit your group "firebird-support" on the web.
To unsubscribe from this group, send an email to:
firebird-support-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
---------------------------------
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[Non-text portions of this message have been removed]