home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Classes / XText / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1992-05-02  |  821 b   |  25 lines

  1. #    This file is part of the XText package (version 0.8)
  2. #    Mike Dixon, April 1992
  3. #    
  4. #    Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  5. #
  6. #    Use and copying of this software and preparation of derivative works based
  7. #    upon this software are permitted.  This software is made available AS IS,
  8. #    and Xerox Corporation makes no warranty about the software or its
  9. #    performance.
  10.  
  11. ALL: all
  12.  
  13. pkg: XTextPkg.o
  14.  
  15. PKG_M_FILES = ErrorStream.m XTAction.m XText0.m XText.m XTScroller.m XTAction_parser.m
  16. PKG_H_FILES = ErrorStream.h XTAction.h XText0.h XText.h XTScroller.h
  17.  
  18. XTextPkg.m: $(PKG_M_FILES)
  19.     ./combine-files $(PKG_M_FILES) | ./remove-extra-includes | cat m-header - >XTextPkg.m
  20.  
  21. XTextPkg.o: XTextPkg.h
  22.  
  23. XTextPkg.h: $(PKG_H_FILES)
  24.     ./combine-files $(PKG_H_FILES) | ./remove-extra-includes | cat h-header - >XTextPkg.h
  25.