You've already forked macports-base
mirror of
https://github.com/macports/macports-base.git
synced 2026-07-12 18:18:43 -07:00
30 lines
743 B
Makefile
30 lines
743 B
Makefile
|
|
.PHONY : all
|
|
.PHONY : clean distclean
|
|
.PHONY : install
|
|
.PHONY : test
|
|
|
|
all::
|
|
@for subdir in $(SUBDIR); do\
|
|
echo ===\> making $@ in ${DIRPRFX}$$subdir; \
|
|
( cd $$subdir && $(MAKE) DIRPRFX=${DIRPRFX}$$subdir/ $@) || exit 1; \
|
|
done
|
|
|
|
clean distclean::
|
|
@for subdir in $(SUBDIR); do\
|
|
echo ===\> making $@ in ${DIRPRFX}$$subdir; \
|
|
( cd $$subdir && $(MAKE) DIRPRFX=${DIRPRFX}$$subdir/ $@) || exit 1; \
|
|
done
|
|
|
|
test::
|
|
@for subdir in $(SUBDIR); do\
|
|
echo ===\> making $@ in ${DIRPRFX}$$subdir; \
|
|
( cd $$subdir && $(MAKE) DIRPRFX=${DIRPRFX}$$subdir/ $@) || exit 1; \
|
|
done
|
|
|
|
install::
|
|
@for subdir in $(SUBDIR); do\
|
|
echo ===\> making $@ in ${DIRPRFX}$$subdir; \
|
|
( cd $$subdir && $(MAKE) DIRPRFX=${DIRPRFX}$$subdir/ $@) || exit 1; \
|
|
done
|