#
# ~ppr/src/fakers/Makefile
# Copyright 1997, Trinity College Computing Center.
# Written by David Chappell.
#
# 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.
#
# Last modified 27 February 1997.
#

include ../include/global.mk

all: fake_lp$(DOTEXE)

install: $(HOMEDIR)/bin/fake_lp$(DOTEXE)

fake_lp$(DOTEXE): fake_lp.c ../include/global_defines.h
	$(CC) $(CFLAGS) -o fake_lp$(DOTEXE) fake_lp.c

$(HOMEDIR)/bin/fake_lp$(DOTEXE): fake_lp$(DOTEXE)
	$(CP) fake_lp$(DOTEXE) $(HOMEDIR)/bin/fake_lp$(DOTEXE)

clean:
	rm -f *~ *.bak *.bck fake_lp$(DOTEXE)

# end of file
