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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. #    Makefile for bin/pg_encoding
  4. #
  5. # Copyright (c) 1998, PostgreSQL development group
  6. #
  7. #
  8. # IDENTIFICATION
  9. #    $Header: /usr/local/cvsroot/pgsql/src/bin/pg_encoding/Makefile,v 1.3 1999/06/05 10:27:31 ishii Exp $
  10. #
  11. #-------------------------------------------------------------------------
  12. SRCDIR= ../..
  13. include ../../Makefile.global
  14. OBJS= pg_encoding.o
  15. CFLAGS+= $(MBFLAGS) -I$(SRCDIR)/include
  16. all: pg_encoding
  17. pg_encoding: $(OBJS) $(LIBPQDIR)/libpq.a
  18. $(CC) -o pg_encoding $(OBJS) -L$(LIBPQDIR) -lpq $(LDFLAGS)
  19. install: pg_encoding
  20. $(INSTALL) $(INSTL_EXE_OPTS) pg_encoding$(X) $(BINDIR)/pg_encoding$(X)
  21. depend dep:
  22. $(CC) -MM $(CFLAGS) *.c >depend
  23. clean: 
  24. rm -f pg_encoding pg_encoding.o
  25. ifeq (depend,$(wildcard depend))
  26. include depend
  27. endif