#! /usr/bin/make -k -f # This is the internal gubbins that keeps some of my pages up to date. # It isn't directly related to julianet. # $Id: Makefile,v 1.3 2002/07/25 02:07:29 mca1001 Exp $ # Erk, repeating self. Need a make include thingy. TARGETS=.cvsignore talktome.pl.html .PHONY: all all: $(TARGETS) clean: rm -vf $(TARGETS) rm -vf *~ .cvsignore: .cvsignore.main Makefile cat $< > $@.new echo $(TARGETS) | tr ' ' '\n' >> $@.new mv $@.new $@ # Erm ... the source could be any old where. Let's not play this game. #%.pl.html: .pl # I don't really want to call them .pl.html anyway. talktome.pl.html: $(CW)/bin/talktome.pl pod2html --infile $< --outfile $@.new --title "The chatty webcrawler" mv $@.new $@