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