]>
Commit | Line | Data |
---|---|---|
accb1901 TG |
1 | #!/usr/bin/make -f |
2 | ||
3 | CFLAGS=$(shell pkg-config --cflags glesv2 --cflags egl --cflags gbm) | |
4 | LIBS=$(shell pkg-config --libs glesv2 --libs egl --libs gbm) | |
5 | ||
6 | debian/tests/gles-gbm: debian/tests/gles-gbm.c | |
7 | gcc -g -o $@ $(CFLAGS) $< $(LIBS) | |
8 | @echo "Build test of $< succeeded" | |
9 | @rm -f $@ |