提交 0bdd6d1e 编写于 作者: B Bruce Momjian

pg_passwd cleanup.

上级 86062218
......@@ -3,18 +3,30 @@
# Makefile
# Makefile for bin/pg_passwd
#-------------------------------------------------------------------------
SRCDIR= ../..
include ../../Makefile.global
OBJS= pg_passwd.o
all: pg_passwd
pg_passwd: $(OBJS)
$(CC) -o pg_passwd $(OBJS) $(LDFLAGS)
install: pg_passwd
$(INSTALL) $(INSTL_EXE_OPTS) pg_passwd $(DESTDIR)$(BINDIR)/pg_passwd
.PHONY: submake
submake:
$(MAKE) -C $(LIBPQDIR) libpq.a
depend dep:
$(CC) -MM $(INCLUDE_OPT) *.c >depend
clean:
rm -f pg_passwd $(OBJS)
ifeq (depend,$(wildcard depend))
include depend
endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册