mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-17 04:10:24 +01:00
egl: new src/egl/drivers/Makefile
This commit is contained in:
parent
cca1ae79aa
commit
d5cf57de2d
1 changed files with 42 additions and 0 deletions
42
src/egl/drivers/Makefile
Normal file
42
src/egl/drivers/Makefile
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# src/egl/drivers/Makefile
|
||||
|
||||
TOP = ../../..
|
||||
|
||||
SUBDIRS = demo dri
|
||||
|
||||
|
||||
default: conditional_subdirs
|
||||
|
||||
|
||||
# depending on $DRIVER_DIRS...
|
||||
conditional_subdirs:
|
||||
@echo "DRIVER_DIRS = " $(DRIVER_DIRS)
|
||||
@case "$$DRIVER_DIRS" in \
|
||||
dri) $(MAKE) dri_subdir || exit 1 ;; \
|
||||
*) ;; \
|
||||
esac;
|
||||
|
||||
|
||||
dri_subdir:
|
||||
(cd dri ; $(MAKE)) || exit 1 ; \
|
||||
|
||||
|
||||
demo_subdir:
|
||||
(cd demo ; $(MAKE)) || exit 1 ; \
|
||||
|
||||
|
||||
|
||||
subdirs:
|
||||
@for dir in $(SUBDIRS) ; do \
|
||||
if [ -d $$dir ] ; then \
|
||||
(cd $$dir ; $(MAKE)) || exit 1 ; \
|
||||
fi \
|
||||
done
|
||||
|
||||
|
||||
clean:
|
||||
@for dir in $(SUBDIRS) ; do \
|
||||
if [ -d $$dir ] ; then \
|
||||
(cd $$dir ; $(MAKE) clean) ; \
|
||||
fi \
|
||||
done
|
||||
Loading…
Add table
Reference in a new issue