mirror of
https://github.com/rene-dev/stmbl.git
synced 2024-12-22 08:32:17 +00:00
19 lines
290 B
Makefile
19 lines
290 B
Makefile
|
# 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
|