xref: /illumos-gate/usr/src/test/util-tests/tests/make/files/make_a/Makefile (revision f52943a93040563107b95bccb9db87d9971ef47d)
1
2SUBDIRS=a b c
3
4all: $(SUBDIRS)
5	@echo "DIR=a CC=${CC}"
6
7$(SUBDIRS): FRC
8	@cd $@; make
9
10FRC:
11