add tinyusb as a git submodule
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "tinyusb"]
|
||||||
|
path = tinyusb
|
||||||
|
url = https://github.com/hathach/tinyusb.git
|
||||||
7
rules.mk
7
rules.mk
@@ -2,7 +2,9 @@ CFLAGS += $(INCLUDES) $(DEFINES)
|
|||||||
|
|
||||||
OBJS = $(addprefix $(BUILD)/, $(notdir %/$(subst .c,.o, $(SRCS))))
|
OBJS = $(addprefix $(BUILD)/, $(notdir %/$(subst .c,.o, $(SRCS))))
|
||||||
|
|
||||||
all: directory $(BUILD)/$(BIN).elf $(BUILD)/$(BIN).hex $(BUILD)/$(BIN).bin $(BUILD)/$(BIN).uf2 size
|
SUBMODULES = tinyusb
|
||||||
|
|
||||||
|
all: directory $(SUBMODULES) $(BUILD)/$(BIN).elf $(BUILD)/$(BIN).hex $(BUILD)/$(BIN).bin $(BUILD)/$(BIN).uf2 size
|
||||||
|
|
||||||
$(BUILD)/$(BIN).elf: $(OBJS)
|
$(BUILD)/$(BIN).elf: $(OBJS)
|
||||||
@echo LD $@
|
@echo LD $@
|
||||||
@@ -20,6 +22,9 @@ $(BUILD)/$(BIN).uf2: $(BUILD)/$(BIN).bin
|
|||||||
@echo UF2CONV $@
|
@echo UF2CONV $@
|
||||||
@$(UF2) $^ -co $@
|
@$(UF2) $^ -co $@
|
||||||
|
|
||||||
|
$(SUBMODULES):
|
||||||
|
git submodule update --init --recursive
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@$(UF2) -D $(BUILD)/$(BIN).uf2
|
@$(UF2) -D $(BUILD)/$(BIN).uf2
|
||||||
|
|
||||||
|
|||||||
1
tinyusb
Submodule
1
tinyusb
Submodule
Submodule tinyusb added at f8288be03f
Reference in New Issue
Block a user