# $Id: Makefile,v 1.3 2002/04/28 16:02:49 richdawe Exp $
#
# Makefile for zippo's test suite - renamed zip tests
# Copyright (C) 2002 by Richard Dawe
#

TOP = ../../..
include ../../Makefile.tst

.PHONY:	clean distclean maintainer-distclean

TMPROOT := $(shell pwd)/tmp
LOG     := renamed.log

default:
	@echo ===============
	@rm -rf $(TMPROOT)
	@echo >>$(LOG)
	@date >>$(LOG)
	@echo >>$(LOG)
	@$(ZIPPO) $(ZIPPOOPT) --root $(TMPROOT) --initdb \
		>>$(LOG) 2>&1
	@$(ZIPPO) $(ZIPPOOPT) --root $(TMPROOT) --install renamed.zip \
		>>$(LOG) 2>&1
	@echo PASSED: renamed
	@echo ===============

clean:
	rm -rf $(TMPROOT) $(LOG)

distclean:	clean

maintainer-distclean:	distclean
