Remove all old build systems

This commit is contained in:
Ryan Pavlik
2010-11-11 12:19:54 -06:00
parent c2c1dca625
commit e786ae3cd1
18 changed files with 0 additions and 957 deletions

View File

@@ -1,34 +0,0 @@
#! make
#
# Automatically generate PDF, PNG, and JPG files from DOT files.
#
# Original Author:
# 2009 Ryan Pavlik <rpavlik@iastate.edu>
# http://academic.cleardefinition.com
# Iowa State University HCI Graduate Program/VRAC
pdfs := $(patsubst %.dot,%.pdf,$(wildcard *.dot))
pngs := $(patsubst %.dot,%.png,$(wildcard *.dot))
jpgs := $(patsubst %.dot,%.jpg,$(wildcard *.dot))
all: $(pdfs) $(pngs) $(jpgs)
pdf: $(pdfs)
png: $(pngs)
jpg: $(jpgs)
clean:
-rm -f $(pdfs) $(pngs) $(jpgs)
realclean: clean
-rm -f *~
.PHONY: all pdf png jpg clean realclean
$(pdfs): %.pdf: %.dot
dot -Tpdf $< -o$@
$(pngs): %.png: %.dot
dot -Tpng $< -o$@
$(jpgs): %.jpg: %.dot
dot -Tjpg $< -o$@