mirror of
https://github.com/cesanta/mongoose
synced 2026-08-25 22:26:06 -04:00
12 lines
318 B
Text
12 lines
318 B
Text
# Do NOT use parenthesis on Windows project dir names
|
|
PROJECTS ?= $(wildcard ../../tutorials/stm32/nucleo-*-keil-*)
|
|
|
|
MAKEFILEPATH := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
|
|
BATPATH := $(subst /,\,$(MAKEFILEPATH))
|
|
|
|
all: $(PROJECTS)
|
|
|
|
$(PROJECTS): FORCE
|
|
$(BATPATH)uniclean.bat $(subst /,\,$@)
|
|
|
|
FORCE:
|