mesa/src/egl/Makefile

32 lines
470 B
Makefile
Raw Normal View History

2005-04-22 22:09:39 +01:00
# src/egl/Makefile
TOP = ../..
include $(TOP)/configs/current
2005-04-22 22:09:39 +01:00
2008-06-05 21:11:54 +01:00
SUBDIRS = main drivers
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
install:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE) install) || exit 1 ; \
fi \
done
2005-04-22 22:09:39 +01:00
clean:
-@for dir in $(SUBDIRS) ; do \
2005-04-22 22:09:39 +01:00
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE) clean) ; \
2005-04-22 22:09:39 +01:00
fi \
done