Makefile
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
- #-------------------------------------------------------------------------
- #
- # Makefile.inc--
- # Makefile for bin/pg_id
- #
- # Copyright (c) 1994, Regents of the University of California
- #
- #
- # IDENTIFICATION
- # $Header: /usr/local/cvsroot/pgsql/src/bin/pg_id/Makefile,v 1.12 1999/01/17 06:19:10 momjian Exp $
- #
- #-------------------------------------------------------------------------
- SRCDIR= ../..
- include ../../Makefile.global
- OBJS= pg_id.o
- #
- # And where libpq goes, so goes the authentication stuff...
- #
- ifdef KRBVERS
- LDFLAGS+= $(KRBLIBS)
- CFLAGS+= $(KRBFLAGS)
- endif
- all: pg_id
- pg_id: $(OBJS) $(LIBPQDIR)/libpq.a
- $(CC) -o pg_id -L$(LIBPQDIR) $(OBJS) -lpq $(LDFLAGS)
- $(LIBPQDIR)/libpq.a:
- $(MAKE) -C $(LIBPQDIR) libpq.a
- install: pg_id
- $(INSTALL) $(INSTL_EXE_OPTS) pg_id$(X) $(BINDIR)/pg_id$(X)
- depend dep:
- $(CC) -MM $(CFLAGS) *.c >depend
- clean:
- rm -f pg_id$(X) $(OBJS)
- ifeq (depend,$(wildcard depend))
- include depend
- endif