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

数据库系统

开发平台:

Unix_Linux

  1. #
  2. # Makefile, requires pgsql/contrib/pginterface
  3. #
  4. #
  5. PGINTERFACE = ../pginterface/pginterface.o ../pginterface/halt.o # these have to be in your library search path
  6. TARGET = findoidjoins
  7. CFLAGS = -g -Wall -I. -I../pginterface -I../../src/interfaces/libpq  -I/usr/local/pgsql/include
  8. LDFLAGS = -L/usr/local/pgsql/lib -lpq
  9. all : $(TARGET)
  10. findoidjoins: $(PGINTERFACE) findoidjoins.c
  11. gcc -o $@ $(CFLAGS) $@.c $(PGINTERFACE) $(LDFLAGS)
  12. clean:
  13. rm -f *.o $(TARGET) log core
  14. install:
  15. install -s -o bin -g bin $(TARGET) /usr/local/pgsql/bin