Makefile
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #
  2. # PostgreSQL types for ISBN and ISSN identifiers.
  3. #
  4. # $Id: Makefile,v 1.1 1998/08/17 03:35:04 scrappy Exp $
  5. all: isbn.so issn.so
  6. isbn.so: isbn.o
  7. ld -Bshareable -o isbn.so isbn.o
  8. isbn.o: isbn.c
  9. cc -g -O -fPIC -I/usr/local/pgsql/include -c isbn.c
  10. issn.so: issn.o
  11. ld -Bshareable -o issn.so issn.o
  12. issn.o: issn.c
  13. cc -g -O -fPIC -I/usr/local/pgsql/include -c issn.c
  14. install: isbn.so issn.so
  15. install -c isbn.so issn.so /usr/local/pgsql/modules
  16. #
  17. # eof
  18. #