#
# ~ppr/src/encodings/Makefile
# Copyright 1995, Trinity College Computing Center.
#
# 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.
#
# Install encodings.
# This file last modified 24 January 1995.
#

include ../include/global.mk

all:

install: $(HOMEDIR)/cache/encoding/CP437Encoding \
	$(HOMEDIR)/cache/encoding/ISOLatin1Encoding

$(HOMEDIR)/cache/encoding/CP437Encoding: CP437Encoding
	cp CP437Encoding $(HOMEDIR)/cache/encoding/CP437Encoding

$(HOMEDIR)/cache/encoding/ISOLatin1Encoding: ISOLatin1Encoding
	cp ISOLatin1Encoding $(HOMEDIR)/cache/encoding/ISOLatin1Encoding

clean:
	rm -f *~ *.bak

# end of file
