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

数据库系统

开发平台:

Unix_Linux

  1. # The Postgres make files exploit features of GNU make that other makes
  2. # do not have.  Because it is a common mistake for users to try to build
  3. # Postgres with a different make, we have this make file that does nothing
  4. # but tell the user to use GNU make.
  5. # If the user were using GNU make now, this file would not get used because
  6. # GNU make uses a make file named "GNUmakefile" in preference to "Makefile"
  7. # if it exists.  Postgres is shipped with a "GNUmakefile".
  8. all install clean dep depend:
  9. @echo "You must use GNU make to use Postgres.  It may be installed"
  10. @echo "on your system with the name 'gmake'."