Hello, I think, what you probably want to do is something like that: MODULE_big = my_funcs OBJS = myfunc.o mysubs.o PG_CONFIG=/usr/local/pgsql/bin/pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) include $(PGXS) Then you will get a shared library called "my_funcs" which includes both of your *.o s and will be deployed to postgres lib dir whenever you call "install" on the makefile. Best regards Carsten Kropf Am 17.03.2010 um 19:27 schrieb Stuart McGraw:
|