X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/f7b856ac80c68e3ca48cf0c176ecdb0ffbf01c41..8d0f7daae8a3ec7cda6d4a74c4c819d5ece97a8b:/examples/dilation/Makefile diff --git a/examples/dilation/Makefile b/examples/dilation/Makefile index 1958879..93a2ece 100644 --- a/examples/dilation/Makefile +++ b/examples/dilation/Makefile @@ -2,10 +2,8 @@ SRC = dilation.dsp IMGIN = letter_j.png LINES = 150 -BASENAME = output -FORMAT = csv +CSVOUT = dilation.csv CSVIN = $(IMGIN:.png=.csv) -CSVOUT = $(BASENAME)1.$(FORMAT) IMGOUT = $(SRC:.dsp=.png) all: $(IMGOUT) @@ -14,10 +12,10 @@ $(IMGOUT): $(CSVOUT) octave -qf img_write.m $(CSVOUT): $(SRC) $(CSVIN) - faustine -d $(SRC) -i $(CSVIN) -t $(LINES) --oformat $(FORMAT) --obasename $(BASENAME) + faustine -f $(SRC) -l $(LINES) < $(CSVIN) 1> $@ $(CSVIN): $(IMGIN) octave -qf img_read.m clean:: - rm -f gmon.out $(IMGOUT) $(BASENAME)* + rm -f gmon.out $(IMGOUT) $(CSVOUT)