home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-02-22 | 817 b | 27 lines |
- # Makefile for pbmplus tools.
- #
- # Copyright (C) 1989, 1991 by Jef Poskanzer.
- #
- # Permission to use, copy, modify, and distribute this software and its
- # documentation for any purpose and without fee is hereby granted, provided
- # that the above copyright notice appear in all copies and that both that
- # copyright notice and this permission notice appear in supporting
- # documentation. This software is provided "as is" without express or
- # implied warranty.
-
- all: merge
-
- # Unfortunately a bug in make for the Arc stops you setting global defaults
- # here, so you have to do them by hand in the other files.
- merge:
- @echo ---- libtiff ----
- make -c libtiff
- @echo ---- pbm ----
- make -c pbm merge
- @echo ---- pgm ----
- make -c pgm merge
- @echo ---- ppm ----
- make -c ppm merge
- @echo ---- pnm ----
- make -c pnm merge
-