
# -------------------------------------------------------------------------------
# target for making the compresssed .tar.Z file
tar.Z:
	strip $(NAME).app/$(NAME);
	tar cf - $(NAME).app | compress >$(NAME).app.tar.Z

clean::
	rm -f $(NAME).app.tar.Z

#