streamlet-examples/Makefile
branchv_0
changeset 92 cf4971342380
parent 89 25a11859975b
--- a/streamlet-examples/Makefile	Sun Apr 25 20:30:53 2021 +0200
+++ b/streamlet-examples/Makefile	Sat May 01 18:18:01 2021 +0200
@@ -15,7 +15,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-all: xpath pid qr-decode jar_info zip_info
+all: xpath pid barcode-reader jar_info zip_info
 	
 .PHONY: all clean
 
@@ -25,7 +25,7 @@
 pid: pid.cpp streamlet-common.h
 	g++ -g -fno-omit-frame-pointer -fsanitize=address $(<) -o $(@)
 
-qr-decode: qr-decode.cpp streamlet-common.h
+barcode-reader: barcode-reader.cpp streamlet-common.h
 	g++ -g -fno-omit-frame-pointer -fsanitize=address $(<) -o $(@) $(shell pkg-config --libs --cflags relpipe-lib-xmlwriter.cpp zbar Magick++)
 
 jar_info: JarInfo.java Streamlet.java
@@ -39,6 +39,7 @@
 clean:
 	rm -f xpath
 	rm -f pid
+	rm -f barcode-reader
 	rm -f jar_info
 	rm -f zip_info
 	rm -f *.class