/contrib/ee/Makefile

https://bitbucket.org/freebsd/freebsd-head/ · Makefile · 29 lines · 10 code · 6 blank · 13 comment · 0 complexity · 2f9238e22ec0d09b7166a9a7d5de3745 MD5 · raw file

  1. # This is the make file for ee, the "easy editor".
  2. #
  3. # A file called 'make.local' will be generated which will contain information
  4. # specific to the local system, such as if it is a BSD or System V based
  5. # version of UNIX, whether or not it has catgets, or select.
  6. #
  7. # The "install" target ("make install") will copy the ee binary to
  8. # the /usr/local/bin directory on the local system. The man page (ee.1)
  9. # will be copied into the /usr/local/man/man1 directory.
  10. #
  11. # The "clean" target ("make clean") will remove the ee and new_curse.o
  12. # object files, and the ee binary.
  13. #
  14. all : localmake buildee
  15. buildee :
  16. make -f make.local
  17. localmake:
  18. @./create.make
  19. install :
  20. cp ee /usr/local/bin/ee
  21. cp ee.1 /usr/local/man/man1/ee.1
  22. clean :
  23. rm -f ee.o new_curse.o ee