shithub: scc

ref: ab2e4ae3a9cf10339b0340865bc12aa58a90fa4f
dir: /lib/Makefile/

View raw version
.POSIX:

include ../config.mk

DIRS = scc crt

all dep clean distclean:
	@pwd=$$PWD; \
	for i in $(DIRS); \
	do \
		cd $$i; \
		$(MAKE) $@; \
		cd $$pwd; \
	done