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