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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile.inc--
  4. #    Makefile for bin/pg_id
  5. #
  6. # Copyright (c) 1994, Regents of the University of California
  7. #
  8. #
  9. # IDENTIFICATION
  10. #    $Header: /usr/local/cvsroot/pgsql/src/bin/pg_id/Makefile,v 1.12 1999/01/17 06:19:10 momjian Exp $
  11. #
  12. #-------------------------------------------------------------------------
  13. SRCDIR= ../..
  14. include ../../Makefile.global
  15. OBJS= pg_id.o
  16. #
  17. # And where libpq goes, so goes the authentication stuff...
  18. #
  19. ifdef KRBVERS
  20. LDFLAGS+= $(KRBLIBS)
  21. CFLAGS+= $(KRBFLAGS)
  22. endif
  23. all: pg_id
  24. pg_id: $(OBJS) $(LIBPQDIR)/libpq.a
  25. $(CC) -o pg_id -L$(LIBPQDIR) $(OBJS) -lpq $(LDFLAGS)
  26. $(LIBPQDIR)/libpq.a:
  27. $(MAKE) -C $(LIBPQDIR) libpq.a
  28. install: pg_id
  29. $(INSTALL) $(INSTL_EXE_OPTS) pg_id$(X) $(BINDIR)/pg_id$(X)
  30. depend dep:
  31. $(CC) -MM $(CFLAGS) *.c >depend
  32. clean: 
  33. rm -f pg_id$(X) $(OBJS) 
  34. ifeq (depend,$(wildcard depend))
  35. include depend
  36. endif