# @(#)$Id: Makefile,v 5.4 1999/09/11 19:02:33 mark Exp $ # icontact - image contact sheet maker # Copyright (C) 1992-1999 Mark B. Hanson (mbh@panix.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA BIN=/usr/local/bin MANEXT=1 MAN=/usr/local/man/man$(MANEXT) CC=cc CFLAGS=-O all: xvtoppm xvtoppm: xvtoppm.c rm -f xvtoppm $(CC) $(CFLAGS) xvtoppm.c -o xvtoppm install: all cp icontact $(BIN) chmod 0755 $(BIN)/icontact cp xvtoppm $(BIN) chmod 0755 $(BIN)/xvtoppm cp icontact.1 $(MAN)/icontact.$(MANEXT) chmod 0444 $(MAN)/icontact.$(MANEXT) cp xvtoppm.1 $(MAN)/xvtoppm.$(MANEXT) chmod 0444 $(MAN)/xvtoppm.$(MANEXT) clean: force rm -f xvtoppm xvtoppm.o force: