From: ellson Date: Tue, 18 Oct 2005 20:22:19 +0000 (+0000) Subject: missed change X-Git-Tag: LAST_LIBGRAPH~32^2~7131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37ab2616a0f563e7dd2a4974ac8183d89a44ee56;p=graphviz missed change --- diff --git a/contrib/diffimg/Makefile b/contrib/diffimg/Makefile deleted file mode 100644 index 7f00ec2ac..000000000 --- a/contrib/diffimg/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -VERSION=0.1 - -CFLAGS=-O2 -Wall -DVERSION="$(VERSION)" -LDFLAGS = -lgd - -diffimg: diffimg.o - -GRAPH = "digraph G { hello -> world }" - -test: diffimg - echo $(GRAPH) | dot -Tpng:cg >hello1.png - echo $(GRAPH) | dot -Tpng:cg >hello2.png - if `./diffimg hello1.png hello2.png >test1.png`;then echo same;else echo different;fi - echo $(GRAPH) | dot -Grankdir=LR -Tpng:cg >hello2.png - if `./diffimg hello1.png hello2.png >test2.png`;then echo same;else echo different;fi - -dist: clean - mkdir diffimg-$(VERSION) - tar cf - --exclude diffimg-$(VERSION) . | (cd diffimg-$(VERSION); tar xf -) - tar czf - diffimg-$(VERSION) >diffimg-$(VERSION).tgz - rm -rf diffimg-$(VERSION) - -clean: - rm -f diffimg *.o *.png *,tgz -