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

数据库系统

开发平台:

Unix_Linux

  1. #
  2. # Makefile for example programs
  3. #
  4. SRCDIR= ../..
  5. include ../../Makefile.global
  6. #
  7. # And where libpq goes, so goes the authentication stuff...
  8. #
  9. ifdef KRBVERS
  10. LDFLAGS+= $(KRBLIBS)
  11. CFLAGS+= $(KRBFLAGS)
  12. endif
  13. PROGS = test-pgsql-locale test-ctype
  14. DIRS = koi8-r ISO8859-7 koi8-to-win1251
  15. all: $(PROGS)
  16. $(PROGS): % : %.c 
  17. $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS)
  18. clean: 
  19. rm -f $(PROGS) *.out
  20. for d in $(DIRS); do 
  21. cd $$d; 
  22. $(MAKE) clean; 
  23. cd ..; 
  24. done
  25. test-%: all
  26. @cd `echo $@ | sed 's/^test-//'` && $(MAKE) test