vengi/Makefile

174 lines
8.1 KiB
Makefile
Raw Normal View History

2018-06-19 11:55:33 -07:00
Q ?= @
UPDATEDIR := /tmp
BUILDDIR ?= ./build
INSTALL_DIR ?= $(BUILDDIRPATH)$(shell uname)
2016-05-13 11:56:58 -07:00
2018-09-09 02:04:47 -07:00
all:
$(Q)if [ ! -f $(BUILDDIR)/CMakeCache.txt ]; then cmake -H. -B$(BUILDDIR) -DCMAKE_INSTALL_PREFIX=$(INSTALL_DIR); fi
2018-06-19 11:55:33 -07:00
$(Q)$(MAKE) --no-print-directory -C $(BUILDDIR) $@
2017-02-25 06:01:49 -08:00
2018-09-09 02:04:47 -07:00
%:
$(Q)if [ ! -f $(BUILDDIR)/CMakeCache.txt ]; then cmake -H. -B$(BUILDDIR) -DCMAKE_INSTALL_PREFIX=$(INSTALL_DIR); fi
$(Q)$(MAKE) --no-print-directory -C $(BUILDDIR) $@
2016-12-03 10:38:38 -08:00
define UPDATE_GIT
$(Q)if [ ! -d $(UPDATEDIR)/$(1).sync ]; then \
2017-08-08 23:54:36 -07:00
git clone --depth=1 $(2) $(UPDATEDIR)/$(1).sync; \
2016-12-03 10:38:38 -08:00
else \
2017-08-08 23:54:36 -07:00
cd $(UPDATEDIR)/$(1).sync && git pull --depth=1 --rebase; \
2016-12-03 10:38:38 -08:00
fi;
endef
define UPDATE_HG
$(Q)if [ ! -d $(UPDATEDIR)/$(1).sync ]; then \
hg clone $(2) $(UPDATEDIR)/$(1).sync; \
2016-12-03 10:38:38 -08:00
else \
cd $(UPDATEDIR)/$(1).sync && hg pull && hg update; \
2016-12-03 10:38:38 -08:00
fi;
endef
2017-09-10 21:47:47 -07:00
update-restclient-cpp:
$(call UPDATE_GIT,restclient-cpp,https://github.com/mrtazz/restclient-cpp.git)
rm -rf contrib/libs/restclient-cpp/restclient-cpp/*.h
rm -rf contrib/libs/restclient-cpp/*.cc
cp $(UPDATEDIR)/restclient-cpp.sync/include/restclient-cpp/*.h contrib/libs/restclient-cpp/restclient-cpp
cp $(UPDATEDIR)/restclient-cpp.sync/source/*.cc contrib/libs/restclient-cpp
2017-09-10 21:47:47 -07:00
update-libuv:
2017-09-06 10:34:12 -07:00
$(call UPDATE_GIT,libuv,https://github.com/libuv/libuv.git)
2018-06-29 11:04:39 -07:00
rm -rf contrib/libs/libuv/include/uv/*.[ch]
rm -rf contrib/libs/libuv/include/*.[ch]
rm -rf contrib/libs/libuv/src/unix/*.[ch]
rm -rf contrib/libs/libuv/src/win32/*.[ch]
rm -rf contrib/libs/libuv/src/*.[ch]
2017-09-06 10:34:12 -07:00
cp $(UPDATEDIR)/libuv.sync/include/*.h contrib/libs/libuv/include
2018-06-29 11:04:39 -07:00
cp $(UPDATEDIR)/libuv.sync/include/uv/*.h contrib/libs/libuv/include/uv
2017-09-06 10:34:12 -07:00
cp $(UPDATEDIR)/libuv.sync/src/unix/*.[ch] contrib/libs/libuv/src/unix
cp $(UPDATEDIR)/libuv.sync/src/win/*.[ch] contrib/libs/libuv/src/win
cp $(UPDATEDIR)/libuv.sync/src/*.[ch] contrib/libs/libuv/src
2017-09-10 21:47:47 -07:00
update-stb:
2017-08-20 11:25:59 -07:00
$(call UPDATE_GIT,stb,https://github.com/nothings/stb.git)
cp $(UPDATEDIR)/stb.sync/stb_image.h src/modules/image/stb_image.h
cp $(UPDATEDIR)/stb.sync/stb_image_write.h src/modules/image/stb_image_write.h
2018-05-07 16:59:56 -07:00
cp $(UPDATEDIR)/stb.sync/stb_truetype.h src/modules/voxelfont/stb_truetype.h
2018-01-21 12:31:15 -08:00
cp $(UPDATEDIR)/stb.sync/stb_image.h contrib/libs/libturbobadger/tb/thirdparty
cp $(UPDATEDIR)/stb.sync/stb_truetype.h contrib/libs/libturbobadger/tb/thirdparty
2017-09-10 21:47:47 -07:00
update-googletest:
2017-06-26 20:58:18 -07:00
$(call UPDATE_GIT,googletest,https://github.com/google/googletest.git)
2017-07-24 12:40:17 -07:00
rm -rf contrib/libs/gtest/src
rm -rf contrib/libs/gtest/include
2018-10-14 11:48:45 -07:00
mkdir -p contrib/libs/gtest/src
mkdir -p contrib/libs/gtest/include
cp -r $(UPDATEDIR)/googletest.sync/googletest/src/ contrib/libs/gtest
cp -r $(UPDATEDIR)/googletest.sync/googletest/include/ contrib/libs/gtest
cp -r $(UPDATEDIR)/googletest.sync/googlemock/src/ contrib/libs/gtest
cp -r $(UPDATEDIR)/googletest.sync/googlemock/include/ contrib/libs/gtest
git checkout -f contrib/libs/gtest/include/gtest/internal/custom
2018-07-06 07:19:49 -07:00
git checkout -f contrib/libs/gtest/include/gmock/internal/custom
2017-09-10 21:47:47 -07:00
update-benchmark:
2017-06-20 11:35:23 -07:00
$(call UPDATE_GIT,benchmark,https://github.com/google/benchmark.git)
cp -r $(UPDATEDIR)/benchmark.sync/src/* contrib/libs/benchmark/src
cp -r $(UPDATEDIR)/benchmark.sync/include/* contrib/libs/benchmark/include
2017-09-10 21:47:47 -07:00
update-backward:
2017-06-11 10:41:00 -07:00
$(call UPDATE_GIT,backward-cpp,https://github.com/bombela/backward-cpp.git)
cp $(UPDATEDIR)/backward-cpp.sync/backward.cpp contrib/libs/backward
cp -f $(UPDATEDIR)/backward-cpp.sync/backward.hpp contrib/libs/backward/backward.h
sed -i 's/backward.hpp/backward.h/g' contrib/libs/backward/backward.cpp
2017-09-10 21:47:47 -07:00
update-dearimgui:
$(call UPDATE_GIT,imgui,https://github.com/ocornut/imgui.git)
2018-10-14 11:25:28 -07:00
cp $(UPDATEDIR)/imgui.sync/im*.h $(UPDATEDIR)/imgui.sync/im*.cpp $(UPDATEDIR)/imgui.sync/misc/cpp/* contrib/libs/dearimgui/dearimgui
2017-08-08 23:27:47 -07:00
mv contrib/libs/dearimgui/dearimgui/imgui_demo.cpp src/tests/testimgui/Demo.cpp
2018-01-09 07:36:49 -08:00
sed -i 's/"imgui.h"/"ui\/imgui\/IMGUI.h"/g' src/tests/testimgui/Demo.cpp
2017-09-10 21:47:47 -07:00
update-assimp:
2016-12-03 10:38:38 -08:00
$(call UPDATE_GIT,assimp,https://github.com/assimp/assimp.git)
rm -rf contrib/libs/assimp/code/* contrib/libs/assimp/include/*
cp -r $(UPDATEDIR)/assimp.sync/code/* contrib/libs/assimp/code
cp -r $(UPDATEDIR)/assimp.sync/include/* contrib/libs/assimp/include
2016-12-03 10:38:38 -08:00
git checkout contrib/libs/assimp/include/assimp/revision.h
2017-09-10 21:47:47 -07:00
update-flatbuffers:
2016-12-03 10:38:38 -08:00
$(call UPDATE_GIT,flatbuffers,https://github.com/google/flatbuffers.git)
rm -rf contrib/libs/flatbuffers/flatbuffers/* contrib/libs/flatbuffers/compiler/*
mkdir -p contrib/libs/flatbuffers/compiler/src
cp -r $(UPDATEDIR)/flatbuffers.sync/include/flatbuffers/* contrib/libs/flatbuffers/flatbuffers
cp -r $(UPDATEDIR)/flatbuffers.sync/src/* contrib/libs/flatbuffers/compiler
cp -r $(UPDATEDIR)/flatbuffers.sync/grpc/src/* contrib/libs/flatbuffers/compiler/src
2016-12-03 10:38:38 -08:00
rm contrib/libs/flatbuffers/compiler/flathash.cpp
2017-09-10 21:47:47 -07:00
update-enet:
2016-12-03 10:38:38 -08:00
$(call UPDATE_GIT,libenet,https://github.com/lsalzman/enet.git)
cp -r $(UPDATEDIR)/libenet.sync/*.[ch] contrib/libs/libenet
cp -r $(UPDATEDIR)/libenet.sync/include/* contrib/libs/libenet/include
2017-09-10 21:47:47 -07:00
update-glm:
2016-12-03 10:38:38 -08:00
$(call UPDATE_GIT,glm,https://github.com/g-truc/glm.git)
rm -rf contrib/libs/glm/glm/*
cp -r $(UPDATEDIR)/glm.sync/glm/* contrib/libs/glm/glm
2016-12-03 10:38:38 -08:00
rm contrib/libs/glm/glm/CMakeLists.txt
2017-09-10 21:47:47 -07:00
update-sdl2:
2016-12-03 10:38:38 -08:00
$(call UPDATE_HG,sdl2,https://hg.libsdl.org/SDL)
2017-10-15 03:55:18 -07:00
rm -rf contrib/libs/sdl2/src/* contrib/libs/sdl2/include/* contrib/libs/sdl2/cmake/*
cp -r $(UPDATEDIR)/sdl2.sync/src/* contrib/libs/sdl2/src
cp -r $(UPDATEDIR)/sdl2.sync/include/* contrib/libs/sdl2/include
2017-10-15 03:55:18 -07:00
cp -r $(UPDATEDIR)/sdl2.sync/cmake/* contrib/libs/sdl2/cmake
2017-09-10 21:47:47 -07:00
update-turbobadger:
2016-12-12 11:26:15 -08:00
$(call UPDATE_GIT,turbobadger,https://github.com/fruxo/turbobadger.git)
2018-01-09 07:36:49 -08:00
rm -rf contrib/libs/libturbobadger/tb/*
cp -r $(UPDATEDIR)/turbobadger.sync/src/tb/* contrib/libs/libturbobadger/tb
git checkout master contrib/libs/libturbobadger/tb/tb_clipboard_sdl.cpp
git checkout master contrib/libs/libturbobadger/tb/tb_system_sdl.cpp
git checkout master contrib/libs/libturbobadger/tb/tb_file_sdl.cpp
git checkout contrib/libs/libturbobadger/tb/thirdparty/
rm contrib/libs/libturbobadger/tb/CMakeLists.txt
rm -rf contrib/libs/libturbobadger/tb/utf8/test\ files
rm -rf contrib/libs/libturbobadger/tb/tests
git diff contrib/libs/libturbobadger/ > $(UPDATEDIR)/turbobadger.sync/upstream.diff
git checkout contrib/libs/libturbobadger/tb/tb_id.cpp
2017-09-11 07:54:07 -07:00
update-glslang:
$(call UPDATE_GIT,glslang,https://github.com/KhronosGroup/glslang.git)
rm -rf src/tools/glslang/External
cp -r $(UPDATEDIR)/glslang.sync/External src/tools/glslang/
rm -rf src/tools/glslang/glslang
cp -r $(UPDATEDIR)/glslang.sync/glslang src/tools/glslang/
rm -rf src/tools/glslang/OGLCompilersDLL
cp -r $(UPDATEDIR)/glslang.sync/OGLCompilersDLL src/tools/glslang/
rm -rf src/tools/glslang/SPIRV
cp -r $(UPDATEDIR)/glslang.sync/SPIRV src/tools/glslang/
rm -rf src/tools/glslang/StandAlone
cp -r $(UPDATEDIR)/glslang.sync/StandAlone src/tools/glslang/
update-nuklear:
$(call UPDATE_GIT,nuklear,https://github.com/vurtun/nuklear.git)
2018-01-09 07:36:49 -08:00
cp $(UPDATEDIR)/nuklear.sync/nuklear.h src/modules/ui/nuklear/private
cp $(UPDATEDIR)/nuklear.sync/demo/overview.c src/tests/testnuklear
2017-09-10 21:47:47 -07:00
# currently not part of updatelibs - intentional - we adopted the original code.
update-simplexnoise:
$(call UPDATE_GIT,simplexnoise,https://github.com/simongeilfus/SimplexNoise.git)
cp $(UPDATEDIR)/simplexnoise.sync/include/Simplex.h src/modules/noise
2018-06-02 11:37:22 -07:00
update-curl:
$(call UPDATE_GIT,curl,https://github.com/curl/curl.git)
2018-06-12 23:59:20 -07:00
cp $(UPDATEDIR)/curl.sync/lib/*.[ch]* contrib/libs/libcurl/lib
2018-07-02 11:14:49 -07:00
cp $(UPDATEDIR)/curl.sync/lib/CMakeLists.txt contrib/libs/libcurl/lib
cp $(UPDATEDIR)/curl.sync/CMakeLists.txt contrib/libs/libcurl
cp -r $(UPDATEDIR)/curl.sync/CMake/* contrib/libs/libcurl/CMake
2018-06-12 23:59:20 -07:00
cp $(UPDATEDIR)/curl.sync/lib/vauth/*.[ch]* contrib/libs/libcurl/lib/vauth
cp $(UPDATEDIR)/curl.sync/lib/vtls/*.[ch]* contrib/libs/libcurl/lib/vtls
cp $(UPDATEDIR)/curl.sync/include/curl/*.[ch]* contrib/libs/libcurl/include/curl
2018-06-02 11:37:22 -07:00
# TODO native file dialog support
2018-01-12 06:15:04 -08:00
# TODO simpleai support
# TODO lua support
updatelibs: update-nuklear update-restclient-cpp update-libuv update-stb update-googletest update-benchmark update-backward update-dearimgui update-flatbuffers update-assimp update-enet update-glm update-sdl2 update-turbobadger update-curl update-glslang
$(MAKE) -C $(BUILDDIR) update-libs