summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/dma-buf/Makefile
blob: f109ddfc7917ca0c4e1486d903ea4bf6d7d6811c (plain)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS=
LDFLAGS=-lpthread -static

all:
	${CROSS_COMPILE}gcc dmabuf-sync-test.c -o dmabuf-sync-test ${CFLAGS} ${LDFLAGS}

run_tests: all
	@./dmabuf-sync-test || echo "dmabuf-sync-test: [FAIL]"

clean:
	rm -fr ./dmabuf-sync-test