1
0
mirror of https://github.com/elima/gpu-playground.git synced 2026-08-24 22:55:41 +00:00

Initial commit

This commit is contained in:
Eduardo Lima Mitev
2016-09-20 05:06:22 +02:00
commit c9dd226c67
6 changed files with 196 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
TARGET=render-nodes-minimal
all: Makefile $(TARGET)
$(TARGET): main.c
gcc -ggdb -O0 -Wall -std=c99 \
`pkg-config --libs --cflags glesv2 egl gbm` \
-o $(TARGET) \
main.c
clean:
rm -f $(TARGET)