Browse Source

Add Raspberry Pi to OpenGL ES2 makefile

Dmitry Hrabrov 7 years ago
parent
commit
bb21a3c836
1 changed files with 4 additions and 1 deletions
  1. 4 1
      demo/sdl_opengles2/Makefile

+ 4 - 1
demo/sdl_opengles2/Makefile

@@ -18,7 +18,10 @@ $(BIN): prepare
 	$(CC) $(SRC) $(CFLAGS) -o bin/$(BIN) $(LIBS)
 
 web: prepare
-	emcc $(SRC) -Os -s USE_SDL=2 -o bin/index.html 
+	emcc $(SRC) -Os -s USE_SDL=2 -o bin/index.html
+
+rpi: prepare
+	$(CC) $(SRC) $(CFLAGS) -o bin/$(BIN) `PKG_CONFIG_PATH=/opt/vc/lib/pkgconfig/ pkg-config --cflags --libs bcm_host brcmglesv2` `/usr/local/bin/sdl2-config --libs --cflags`
 
 prepare:
 	@mkdir -p bin