69a404a94b
Some checks failed
PikaOS Package Build Only (Canary) (i386) / build (push) Failing after 1s
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Has been cancelled
PikaOS Package Build Only (i386) / build (push) Failing after 1s
PikaOS Package Build Only (amd64-v3) / build (push) Failing after 1s
PikaOS Package Build & Release (Canary) (i386) / build (push) Failing after 1s
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Successful in 19m28s
PikaOS Package Build & Release (i386) / build (push) Failing after 2s
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 1s
10 lines
280 B
Makefile
Executable File
10 lines
280 B
Makefile
Executable File
#!/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 $@
|