]> granicus.if.org Git - graphviz/commitdiff
missed change
authorellson <devnull@localhost>
Tue, 18 Oct 2005 20:22:19 +0000 (20:22 +0000)
committerellson <devnull@localhost>
Tue, 18 Oct 2005 20:22:19 +0000 (20:22 +0000)
contrib/diffimg/Makefile [deleted file]

diff --git a/contrib/diffimg/Makefile b/contrib/diffimg/Makefile
deleted file mode 100644 (file)
index 7f00ec2..0000000
+++ /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
-