mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
17 lines
475 B
Makefile
17 lines
475 B
Makefile
# Makefile
|
|
|
|
CLANG_FORMAT = clang-format-3.5
|
|
|
|
include Local.mk
|
|
|
|
clean:
|
|
rm -f *.o dl/*.gen.* import/*.o
|
|
|
|
format:
|
|
$(CLANG_FORMAT) -i *.cpp *.h bits/*.h import/*.h porting/*.cpp
|
|
|
|
ci:
|
|
git clone -b 3.0-gles2 --depth=1 https://github.com/efornara/godot
|
|
ln -s `pwd` godot/platform/frt
|
|
( cd godot ; scons platform=frt target=release warnings=no builtin_freetype=yes builtin_libpng=yes builtin_zlib=yes module_openssl_enabled=no module_websocket_enabled=no tools=no frt_arch=pc )
|