Browse code

Add implementation

Robert Cranston authored on 13/07/2025 21:17:05
Showing 1 changed files
... ...
@@ -3,4 +3,5 @@ RESULTS = $(patsubst tests/%, results/%, $(TESTS))
3 3
 
4 4
 all: $(RESULTS)
5 5
 
6
-results/%: tests/%
6
+results/%: tests/% barcode.py
7
+	mkdir -p $$(dirname $@) && ./barcode.py $< $@
Browse code

Add makefile and test data

Robert Cranston authored on 13/07/2025 20:14:43
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,6 @@
1
+TESTS   = $(wildcard tests/*)
2
+RESULTS = $(patsubst tests/%, results/%, $(TESTS))
3
+
4
+all: $(RESULTS)
5
+
6
+results/%: tests/%