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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile
  4. #    Makefile for bin/pg_passwd
  5. #-------------------------------------------------------------------------
  6. SRCDIR= ../..
  7. include ../../Makefile.global
  8. OBJS= pg_passwd.o
  9. all: pg_passwd
  10. pg_passwd: $(OBJS)
  11. $(CC) -o pg_passwd $(OBJS) $(LDFLAGS)
  12. install: pg_passwd
  13. $(INSTALL) $(INSTL_EXE_OPTS) pg_passwd$(X) $(BINDIR)/pg_passwd$(X)
  14. .PHONY: submake
  15. submake:
  16. $(MAKE) -C $(LIBPQDIR) libpq.a
  17. depend dep:
  18. $(CC) -MM $(CFLAGS) *.c >depend
  19. clean:
  20. rm -f pg_passwd$(X) $(OBJS)
  21. ifeq (depend,$(wildcard depend))
  22. include depend
  23. endif