home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume13 / bool-eval / Makefile < prev    next >
Makefile  |  1988-01-31  |  2KB  |  66 lines

  1. # (c) copyright 1987 jim frost
  2. # all rights reserved
  3. #
  4. # this program is copyrighted material.  the author gives permission
  5. # to duplicate and redistribute this program provided the following
  6. # conditions are met:
  7. #   - this copyright notice is not removed.
  8. #   - all duplicate copies or distributions contain full source
  9. #     and documentation, including copyright notices.
  10. #   - duplicate copies or distributions outside a single site are
  11. #     original distributions without modifications.  (this is to keep
  12. #     bastardized versions from showing up all over thie place.)
  13. #
  14. # this program source may be modified provided the following
  15. # conditions are met:
  16. #   - modified source is not distributed to other sites.
  17. #   - modifications (including, but not limited to, bug fixes) are
  18. #     sent to the author if the modifications are to be distributed.
  19. #     no modified source is to be distributed unless done so by the
  20. #     author.
  21. #
  22. # no warranty, either express or implied, is given for this program.
  23. # the author makes no guarantees of fitness for any use of this
  24. # program.  the author is not responsible for damages resulting from
  25. # the use of this program for any purpose.
  26. #
  27. # 'site' refers to one or more computers under a single management.
  28. # 'author' refers to the copyright holder, jim frost.
  29. # 'source' refers to all files related to this program.
  30. # 'documentation' refers to non-compilable files in the distribution.
  31. #
  32. # basically this notice is to keep me out of trouble should anything
  33. # go wrong (i really *do* test these things though) and to make sure
  34. # that the distribution of code is centralized.  makes bug fixes and
  35. # enhancements much easier.
  36. #
  37. # thank you for your attention to this copyright notice.  if everyone
  38. # follows this, you may find this a useful tool that is pretty well
  39. # supported.
  40. #
  41. # author information:
  42. #   jim frost                    permanent usnail address:
  43. #   madd@bucsb.bu.edu            75 washington street
  44. #   ..!harvard!bu-cs!bucsb!madd  laconia, nh  03246.
  45. #
  46. CFLAGS= -O
  47.  
  48. all:        bool
  49.  
  50. bool:        alloc.o bool.o build.o eval_file.o eval_func.o misc.o token.o
  51.         cc $(CFLAGS) -o bool alloc.o bool.o build.o eval_file.o eval_func.o misc.o token.o
  52.  
  53. clean:
  54.         rm -f *.o
  55.  
  56. *.c.o:
  57.         cc -c $(CFLAGS) $*
  58.  
  59. alloc.o:    bool.h alloc.c
  60. bool.o:        bool.h bool.c
  61. build.o:    bool.h build.c
  62. eval_file.o:    bool.h eval_file.c
  63. eval_func.o:    bool.h eval_func.c
  64. misc.o:        bool.h misc.c
  65. token.o:    bool.h token.c
  66.