Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/libusb_stm32.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Filimonchuk <dmitrystu@gmail.com>2022-07-29 00:29:56 +0300
committerDmitry Filimonchuk <dmitrystu@gmail.com>2022-07-29 16:15:41 +0300
commitbbdc8a5ee66bea72c2c30111c6c4989406a1d101 (patch)
treea1ba362caeff4cd29b63ff145a32dde6cd2c9c0b
parent79d4443751bd4f8005a0ffc3a4fbb1310529e192 (diff)
[CI] fix win build. switched to winwows-2019
-rw-r--r--.github/workflows/test-build-win.yml2
-rw-r--r--Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test-build-win.yml b/.github/workflows/test-build-win.yml
index 68d52ff..7e5c2e9 100644
--- a/.github/workflows/test-build-win.yml
+++ b/.github/workflows/test-build-win.yml
@@ -16,7 +16,7 @@ jobs:
name: Windows
env:
CMSIS: CMSIS_5
- runs-on: windows-latest
+ runs-on: windows-2019
steps:
- name: ARM GCC setup
uses: fiam/arm-none-eabi-gcc@v1
diff --git a/Makefile b/Makefile
index 15f5f75..0c9290b 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,6 @@ vpath %.c $(SRCPATH)
vpath %.S $(SRCPATH)
vpath %.s $(SRCPATH)
-
help all:
@echo 'Usage: make target [program]'
@echo 'Available targets are:'
@@ -109,6 +108,7 @@ $(DOUT).elf : $(OBJDIR) $(DOBJ) $(OBJECTS)
@$(LD) $(CFLAGS2) $(LDFLAGS) -Wl,--script='$(LDSCRIPT)' -Wl,-Map=$(DOUT).map $(DOBJ) $(OBJECTS) -o $@
clean: $(OBJDIR)
+ $(MAKE) --version
@$(RM) $(DOUT).*
@$(RM) $(call fixpath, $(OBJDIR)/*.*)