#
# This is a very rudimentary Makefile to compile the "ice" command-line
# encryption program. It also create a file "deice", which is simply a
# symbolic link to "ice".
#
# Installation is left as an exercise for the reader.
#
# Written by Matthew Kwan, November 1996
#

CC =		gcc
CPPFLAGS =	-O

ice:		main.o ice.o deice
		$(CC) -o $@ main.o ice.o

deice:
		@if [ ! -h deice ] ; then ln -s ice deice ; fi
