changed global demo make script to Makefile

This commit is contained in:
vurtun 2015-10-08 10:04:42 +02:00
parent 2d35a36352
commit 20824d6dd5
2 changed files with 9 additions and 9 deletions

9
demo/Makefile Normal file
View File

@ -0,0 +1,9 @@
.PHONY : opengl x11 nanovg
all: opengl x11 nanovg
opengl:
$(MAKE) -C opengl -f MakefileDebug
x11:
$(MAKE) -C x11 -f MakefileDebug
nanovg:
cd nanovg
$(MAKE) -C nanovg -f MakefileDebug

View File

@ -1,9 +0,0 @@
#!/bin/sh
set -e
cd opengl
make -f Makefile
cd ../x11/
make -f Makefile
cd ../nanovg/
make -f Makefile
cd ..