summaryrefslogtreecommitdiffstats
path: root/libcairobarcode/Makefile
blob: b47d3b38e1842687f3f0c17c29f47067d0a231bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include ../config.mk

all: test

libcairobarcode.so:
	#TODO

test: test.vala ean.vala code39.vala error.vala
	${VALAC} -o $@ --pkg cairo $^

clean:
	rm -f test test.svg

.PHONY: all clean