mesa/src/egl/Makefile

25 lines
328 B
Makefile
Raw Normal View History

2005-04-22 22:09:39 +01:00
# src/egl/Makefile
TOP = ../..
SUBDIRS = main drivers/demo drivers/dri
2005-04-22 22:09:39 +01:00
default: subdirs
subdirs:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE)) || exit 1 ; \
2005-04-22 22:09:39 +01:00
fi \
done
clean:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE) clean) ; \
2005-04-22 22:09:39 +01:00
fi \
done