Examples' Makefiles are completed and tested.
[Faustine.git] / examples / licenseplate / Makefile
diff --git a/examples/licenseplate/Makefile b/examples/licenseplate/Makefile
deleted file mode 100644 (file)
index 4ec0b44..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-SRC = licenceplate.dsp
-IMGIN = licence_small.png
-LINES = 117
-
-BASENAME = output
-FORMAT = csv
-CSVIN = $(IMGIN:.png=.csv)
-CSVOUT = $(BASENAME)1.$(FORMAT)
-IMGOUT = $(SRC:.dsp=.png)
-
-all: $(IMGOUT)
-
-$(IMGOUT): $(CSVOUT)
-       octave -qf img_write.m
-
-$(CSVOUT): $(SRC) $(CSVIN)
-       faustine -d $(SRC) -i $(CSVIN) -t $(LINES) --oformat $(FORMAT) --obasename $(BASENAME)
-
-$(CSVIN): $(IMGIN)
-       octave -qf img_read.m
-
-clean::
-       rm -f gmon.out $(IMGOUT) $(BASENAME)* *csv