home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-05-02 | 821 b | 25 lines |
- # This file is part of the XText package (version 0.8)
- # Mike Dixon, April 1992
- #
- # Copyright (c) 1992 Xerox Corporation. All rights reserved.
- #
- # Use and copying of this software and preparation of derivative works based
- # upon this software are permitted. This software is made available AS IS,
- # and Xerox Corporation makes no warranty about the software or its
- # performance.
-
- ALL: all
-
- pkg: XTextPkg.o
-
- PKG_M_FILES = ErrorStream.m XTAction.m XText0.m XText.m XTScroller.m XTAction_parser.m
- PKG_H_FILES = ErrorStream.h XTAction.h XText0.h XText.h XTScroller.h
-
- XTextPkg.m: $(PKG_M_FILES)
- ./combine-files $(PKG_M_FILES) | ./remove-extra-includes | cat m-header - >XTextPkg.m
-
- XTextPkg.o: XTextPkg.h
-
- XTextPkg.h: $(PKG_H_FILES)
- ./combine-files $(PKG_H_FILES) | ./remove-extra-includes | cat h-header - >XTextPkg.h
-