mesa-git/debian/tests/gles-gbm-build-test

10 lines
280 B
Plaintext
Raw Normal View History

2023-08-07 18:05:10 +02:00
#!/usr/bin/make -f
CFLAGS=$(shell pkg-config --cflags glesv2 --cflags egl --cflags gbm)
LIBS=$(shell pkg-config --libs glesv2 --libs egl --libs gbm)
debian/tests/gles-gbm: debian/tests/gles-gbm.c
gcc -g -o $@ $(CFLAGS) $< $(LIBS)
@echo "Build test of $< succeeded"
@rm -f $@