From 3ce0dc2266b868b0cdc3b6efb4376e6a89891bba Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Mon, 6 May 2024 18:29:01 +0200 Subject: [PATCH] Improve workspace to include jetbrains run-configurations --- .idea/runConfigurations/Run_controller.xml | 19 +++++++++++++++++ .idea/runConfigurations/Run_controller2.xml | 21 +++++++++++++++++++ .idea/runConfigurations/Run_core.xml | 19 +++++++++++++++++ .idea/runConfigurations/clippy_all.xml | 8 +++++++ .idea/runConfigurations/clippy_common.xml | 19 +++++++++++++++++ .idea/runConfigurations/clippy_controller.xml | 19 +++++++++++++++++ .idea/runConfigurations/clippy_core.xml | 19 +++++++++++++++++ .idea/runConfigurations/run_all.xml | 8 +++++++ Makefile | 15 ------------- 9 files changed, 132 insertions(+), 15 deletions(-) create mode 100644 .idea/runConfigurations/Run_controller.xml create mode 100644 .idea/runConfigurations/Run_controller2.xml create mode 100644 .idea/runConfigurations/Run_core.xml create mode 100644 .idea/runConfigurations/clippy_all.xml create mode 100644 .idea/runConfigurations/clippy_common.xml create mode 100644 .idea/runConfigurations/clippy_controller.xml create mode 100644 .idea/runConfigurations/clippy_core.xml create mode 100644 .idea/runConfigurations/run_all.xml diff --git a/.idea/runConfigurations/Run_controller.xml b/.idea/runConfigurations/Run_controller.xml new file mode 100644 index 0000000..aeab31d --- /dev/null +++ b/.idea/runConfigurations/Run_controller.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Run_controller2.xml b/.idea/runConfigurations/Run_controller2.xml new file mode 100644 index 0000000..78d1667 --- /dev/null +++ b/.idea/runConfigurations/Run_controller2.xml @@ -0,0 +1,21 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Run_core.xml b/.idea/runConfigurations/Run_core.xml new file mode 100644 index 0000000..1c44b74 --- /dev/null +++ b/.idea/runConfigurations/Run_core.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/clippy_all.xml b/.idea/runConfigurations/clippy_all.xml new file mode 100644 index 0000000..78f9589 --- /dev/null +++ b/.idea/runConfigurations/clippy_all.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/clippy_common.xml b/.idea/runConfigurations/clippy_common.xml new file mode 100644 index 0000000..bc1d48b --- /dev/null +++ b/.idea/runConfigurations/clippy_common.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/clippy_controller.xml b/.idea/runConfigurations/clippy_controller.xml new file mode 100644 index 0000000..88658ed --- /dev/null +++ b/.idea/runConfigurations/clippy_controller.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/clippy_core.xml b/.idea/runConfigurations/clippy_core.xml new file mode 100644 index 0000000..314293c --- /dev/null +++ b/.idea/runConfigurations/clippy_core.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/run_all.xml b/.idea/runConfigurations/run_all.xml new file mode 100644 index 0000000..ac73072 --- /dev/null +++ b/.idea/runConfigurations/run_all.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Makefile b/Makefile index e2e2631..777e071 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,6 @@ configs: $(MAKE) -C core config - ln -s core/emgauwa-core.json emgauwa-core.json $(MAKE) -C controller config - ln -s controller/emgauwa-controller.json emgauwa-controller.json git-clone-http: git clone https://git.serguzim.me/emgauwa/common.git @@ -18,16 +16,3 @@ git-status: @printf "===== COMMON =====\n" && cd common && git status @printf "\n\n===== CORE =====\n" && cd core && git status @printf "\n\n===== CONTROLLER =====\n" && cd controller && git status - - -emgauwa-core_%: - $(TOOL) build --target $* --release - mkdir -p out/releases - cp target/$*/release/emgauwa-core out/releases/emgauwa-core_$* - cp target/$*/release/emgauwa-controller out/releases/emgauwa-controller_$* - -releases: - $(MAKE) TOOL=cross emgauwa-core_arm-unknown-linux-gnueabihf - $(MAKE) TOOL=cargo emgauwa-core_x86_64-unknown-linux-gnu - $(MAKE) TOOL=cross emgauwa-core_x86_64-unknown-linux-musl -