Browse Source

Add SKIP_VERSION option to speed up compilation

pull/1224/head
Fred Sundvik 7 years ago
parent
commit
738b8d2b9c
18 changed files with 8 additions and 0 deletions
  1. +8
    -0
      Makefile
  2. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/MS_sculpt_mobile.c
  3. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/MS_sculpt_mobile.h
  4. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/Makefile
  5. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/babblePaste.c
  6. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/babblePaste.h
  7. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/babblePaste.txt
  8. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/config.h
  9. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/default/Makefile
  10. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/default/config.h
  11. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/default/keymap.c
  12. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/default/readme.md
  13. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/Makefile
  14. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/config.h
  15. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/keymap.c
  16. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/readme.md
  17. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/readme.md
  18. +0
    -0
      keyboards/handwired/MS_sculpt_mobile/rules.mk

+ 8
- 0
Makefile View File

@ -534,14 +534,22 @@ test: test-all
.PHONY: test-clean
test-clean: test-all-clean
ifdef SKIP_VERSION
SKIP_GIT := yes
endif
# Generate the version.h file
ifndef SKIP_GIT
GIT_VERSION := $(shell git describe --abbrev=6 --dirty --always --tags 2>/dev/null || date +"%Y-%m-%d-%H:%M:%S")
else
GIT_VERSION := NA
endif
ifndef SKIP_VERSION
BUILD_DATE := $(shell date +"%Y-%m-%d-%H:%M:%S")
$(shell echo '#define QMK_VERSION "$(GIT_VERSION)"' > $(ROOT_DIR)/quantum/version.h)
$(shell echo '#define QMK_BUILDDATE "$(BUILD_DATE)"' >> $(ROOT_DIR)/quantum/version.h)
else
BUILD_DATE := NA
endif
include $(ROOT_DIR)/testlist.mk

keyboards/handwired/MS-sculpt-mobile/MS-sculpt-mobile.c → keyboards/handwired/MS_sculpt_mobile/MS_sculpt_mobile.c View File


keyboards/handwired/MS-sculpt-mobile/MS-sculpt-mobile.h → keyboards/handwired/MS_sculpt_mobile/MS_sculpt_mobile.h View File


keyboards/handwired/MS-sculpt-mobile/Makefile → keyboards/handwired/MS_sculpt_mobile/Makefile View File


keyboards/handwired/MS-sculpt-mobile/babblePaste.c → keyboards/handwired/MS_sculpt_mobile/babblePaste.c View File


keyboards/handwired/MS-sculpt-mobile/babblePaste.h → keyboards/handwired/MS_sculpt_mobile/babblePaste.h View File


keyboards/handwired/MS-sculpt-mobile/babblePaste.txt → keyboards/handwired/MS_sculpt_mobile/babblePaste.txt View File


keyboards/handwired/MS-sculpt-mobile/config.h → keyboards/handwired/MS_sculpt_mobile/config.h View File


keyboards/handwired/MS-sculpt-mobile/keymaps/default/Makefile → keyboards/handwired/MS_sculpt_mobile/keymaps/default/Makefile View File


keyboards/handwired/MS-sculpt-mobile/keymaps/default/config.h → keyboards/handwired/MS_sculpt_mobile/keymaps/default/config.h View File


keyboards/handwired/MS-sculpt-mobile/keymaps/default/keymap.c → keyboards/handwired/MS_sculpt_mobile/keymaps/default/keymap.c View File


keyboards/handwired/MS-sculpt-mobile/keymaps/default/readme.md → keyboards/handwired/MS_sculpt_mobile/keymaps/default/readme.md View File


keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/Makefile → keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/Makefile View File


keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/config.h → keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/config.h View File


keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c → keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/keymap.c View File


keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/readme.md → keyboards/handwired/MS_sculpt_mobile/keymaps/milestogo/readme.md View File


keyboards/handwired/MS-sculpt-mobile/readme.md → keyboards/handwired/MS_sculpt_mobile/readme.md View File


keyboards/handwired/MS-sculpt-mobile/rules.mk → keyboards/handwired/MS_sculpt_mobile/rules.mk View File


Loading…
Cancel
Save