On Wed, Mar 28, 2001 at 12:17:52AM +0000, Roper, Tracy D. wrote:
> Further research shows that this make command ends with the following
> result:
>
> make -f /u01/oracle/OraHome1/rdbms/demo/demo_rdbms.mk build EXE=DBD_ORA_EXE
> OBJS=DBD_ORA_OBJ.o
>
> Make: Don't know how to make DBD_ORA_OBJ.o. Stop.
>
> Thought this might give more direction.
It does. The Makefile.PL is trying to work out how to build and link
Oracle OCI applications by asking Oracle's own demo_rdbms.mk makefile
how it would do it. Try adding the -v option to see what it's doing.
And search for DBD_ORA_OBJ in Makefile.PL to see the code.
The code create an empty DBD_ORA_OBJ.o file so I can't see why
make should say 'Don't know how to make DBD_ORA_OBJ.o'. But something
is obviously odd with your make and/or Oracle because it works
well for others.
You could try hacking Makefile.PL to add some verbosity and debugging
flags to the "make -f ..." call.
Tim.