building a c function - Mailing list pgsql-general

From Stuart McGraw
Subject building a c function
Date
Msg-id 4BA11F26.8090707@frii.com
Whole thread Raw
Responses Re: building a c function  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: building a c function  (Carsten Kropf <ckropf2@fh-hof.de>)
List pgsql-general
Hello all,

I know this is a very elementary question, but my excuse
is I have not programmed in C or written makefiles for
15+ years...

I am trying to write a C-language function, call it my_func.
But I also have a my_subs.o that does the heavy lifting
for my_func.c.  My makefile is:

MODULES = my_func
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
OBJS = my_subs.o    # Is this right?

But I see no indication in the output that my_subs.o is
being used:

  gcc -O2 -g ... -fpic -shared -o my_func.so my_func.o

How do I tell the makefile to include my_subs.o when building
the shared lib?


pgsql-general by date:

Previous
From: Greg Smith
Date:
Subject: Re: stopping processes, preventing connections
Next
From: John Smith
Date:
Subject: update ... set ... subquery