home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Source / winterp-1.13 / Imakefile < prev    next >
Encoding:
Makefile  |  1991-10-06  |  2.4 KB  |  58 lines

  1. ################################################################################
  2. #
  3. # File:         Imakefile
  4. # RCS:          $Header: Imakefile,v 1.2 91/03/14 02:44:26 mayer Exp $
  5. # Description:  IMAKEFILE FOR WINTERP TOPLEVEL DIRECTORY
  6. # Author:       Niels Mayer, HPLabs
  7. # Created:      Fri Nov 24 19:47:38 1989
  8. # Modified:     Sat Oct  5 22:07:35 1991 (Niels Mayer) mayer@hplnpm
  9. # Language:     N/A
  10. # Package:      N/A
  11. # Status:       X11r5 contrib tape release
  12. #
  13. # WINTERP Copyright 1989, 1990 Hewlett-Packard Company (by Niels Mayer).
  14. # XLISP version 2.1, Copyright (c) 1989, by David Betz.
  15. #
  16. # Permission to use, copy, modify, distribute, and sell this software and its
  17. # documentation for any purpose is hereby granted without fee, provided that
  18. # the above copyright notice appear in all copies and that both that
  19. # copyright notice and this permission notice appear in supporting
  20. # documentation, and that the name of Hewlett-Packard and David Betz not be
  21. # used in advertising or publicity pertaining to distribution of the software
  22. # without specific, written prior permission.  Hewlett-Packard and David Betz
  23. # make no representations about the suitability of this software for any
  24. # purpose. It is provided "as is" without express or implied warranty.
  25. #
  26. # HEWLETT-PACKARD AND DAVID BETZ DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
  27. # SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
  28. # IN NO EVENT SHALL HEWLETT-PACKARD NOR DAVID BETZ BE LIABLE FOR ANY SPECIAL,
  29. # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  31. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  32. # PERFORMANCE OF THIS SOFTWARE.
  33. #
  34. # See ./winterp/COPYRIGHT for information on contacting the authors.
  35. #
  36. # Please send modifications, improvements and bugfixes to mayer@hplabs.hp.com
  37. # Post XLISP-specific questions/information to the newsgroup comp.lang.lisp.x
  38. #
  39. ################################################################################
  40.  
  41. #define IHaveSubdirs
  42. #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'
  43.  
  44. SUBDIRS = src-client src-server
  45.  
  46. MakeSubdirs($(SUBDIRS))
  47. DependSubdirs($(SUBDIRS))
  48.  
  49. World::
  50.         @echo ""
  51.         @echo "Building WINTERP Widget Interpreter"
  52.         @echo ""
  53.         $(MAKE) Makefiles
  54.         $(MAKE) clean
  55.         $(MAKE) includes
  56.         $(MAKE) depend
  57.         $(MAKE) $(WORLDOPTS)
  58.