1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-22 00:22:28 +00:00
stmbl/stm32f103/Libraries/Makefile
2014-12-13 02:52:33 +01:00

19 lines
290 B
Makefile
Executable File

# 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