here is my make file SRCS = client.c entry.c Ip.c OBJS = client.o entry.o Ip.o PALMCFLAGS = -g -O2 -palmos3.1 INCLUDES= -I$(HDIR) -I$(CC_DEFINES) DEFINES = -DCPU=$(CPU) $(DEFS) CC_DEFINES = -DCPU=$(CPU) $(DEFINE_CC) $(EXTRA_DEFINE) CFLAGS = $(INCLUDES) $(DEFINES) $(ACFLAGS) $(PALMCFLAGS) HDIR = ../../include AR=m68k-palmos-ar AS=m68k-palmos-as CC=m68k-palmos-gcc -ggdb LD=m68k-palmos-ld RANLIB=m68k-palmos-ranlib all: pda.prc pda.prc: pda bin.stamp build-prc pda.prc "pda" plRc pda *.bin pda: pda.o $(CC) $(CFLAGS) -o pda pda.o pda.o:$(OBJS) $(LD) -g -r -o $@ $(OBJS) bin.stamp: Ivox.rcp IvoxRsc.h hello.bmp pilrc Ivox.rcp clean: $(RM) *.o a.out *.bin *.stamp *.prc pda John Marshall <[EMAIL PROTECTED]> wrote in message news:13010@palm-dev-forum... > > You'll need to show us the commands you're using to compile this. It > looks like you're linking using m68k-palmos-ld directly instead of via > the m68k-palmos-gcc front end. This doesn't work unless you know what > you are doing. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
