# A makefile for hitop # Add the names (including relative paths) of files that should be created # to the following line. If you can't fit them all on a single line # then either put a backslash '\' as the last character on a line and # continue on the next line, or group them together in other variables HTMLFILES = source.html # Add the names of any hitop files that *don't* create their own html # files to the next line (including relative paths) TEMPLATES = template.hitop # set the following to the name (and possibly path) of the hitop binary HITOP = hitop # any flags you want passing to hitop should go here: # HIFLAGS = add flags and uncomment # ----------------------------------------------------------------------- # you shouldn't need to change anything below this line # ----------------------------------------------------------------------- site: ${HTMLFILES} all: site .PHONY: all clean clean: rm -f ${HTMLFILES} %.html: %.hitop ${TEMPLATES} ${HITOP} ${HIFLAGS} $< $@