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

数据库系统

开发平台:

Unix_Linux

  1. #
  2. # Makefile for example programs
  3. #
  4. SRCDIR= ../..
  5. include ../../Makefile.global
  6. CFLAGS+= -I$(LIBPQDIR)
  7. LDFLAGS+= -L$(LIBPQDIR) -lpq 
  8. #
  9. # And where libpq goes, so goes the authentication stuff...
  10. #
  11. ifdef KRBVERS
  12. LDFLAGS+= $(KRBLIBS)
  13. CFLAGS+= $(KRBFLAGS)
  14. endif
  15. # PROGS= testlibpq0 testlibpq1 testlibpq2 testlibpq3 testlibpq4 testlo
  16. PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo testlo2
  17. all: $(PROGS)
  18. $(PROGS): % : %.c 
  19. $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS)
  20. clean: 
  21. rm -f $(PROGS)