1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-22 08:32:17 +00:00
stmbl/stm32f103/Libraries/Makefile

19 lines
290 B
Makefile
Raw Permalink Normal View History

2014-12-03 13:44:08 +00:00
# Make all libraries
export
CFLAGS := $(patsubst -I%,-I../../%,$(CFLAGS))
SUBDIRS := $(shell ls -F|grep /|grep -v CVS)
.PHONY: subdirs $(SUBDIRS)
.PHONY: clean
subdirs: ${SUBDIRS}
${SUBDIRS}:
${MAKE} -C $@
clean:
find . -name *.a -delete
find . -name *.o -delete