Browse Source

Update Makefile variables (#335)

V3.0
ReFil 2 years ago committed by GitHub
parent
commit
0737d53e01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 8
      Makefile

2
CHANGELOG.md

@ -4,6 +4,8 @@ Here's all notable changes and commits to both the configuration repo and the ba
Many thanks to all those who have submitted issues and pull requests to make this firmware better! Many thanks to all those who have submitted issues and pull requests to make this firmware better!
## Config repo ## Config repo
1/16/2024 - Change the makefile to fis WSL2 compatibility [#335](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/335)
1/14/2024 - Update base ZMK, change KConfig attributes to support, Enable experimental BLE features for improved stability [#326](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/326) 1/14/2024 - Update base ZMK, change KConfig attributes to support, Enable experimental BLE features for improved stability [#326](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/326)
12/27/2023 - Change how the characters are used in the versioning script for improved MacOS experience [#303](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/303) 12/27/2023 - Change how the characters are used in the versioning script for improved MacOS experience [#303](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/303)

8
Makefile

@ -1,7 +1,7 @@
DOCKER := $(shell { command -v podman || command -v docker; }) DOCKER := "$(shell { command -v podman || command -v docker; })"
TIMESTAMP := $(shell date -u +"%Y%m%d%H%M") TIMESTAMP := "$(shell date -u +"%Y%m%d%H%M")"
COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null) COMMIT := "$(shell git rev-parse --short HEAD 2>/dev/null)"
detected_OS := $(shell uname) # Classify UNIX OS detected_OS := "$(shell uname)" # Classify UNIX OS
ifeq ($(strip $(detected_OS)),Darwin) #We only care if it's OS X ifeq ($(strip $(detected_OS)),Darwin) #We only care if it's OS X
SELINUX1 := SELINUX1 :=
SELINUX2 := SELINUX2 :=

Loading…
Cancel
Save