diff options
author | Brian Paul <[email protected]> | 2008-06-05 14:11:39 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-05 14:11:39 -0600 |
commit | d5cf57de2de9692e9dc194bea1bbf8abfd446770 (patch) | |
tree | d786de5a7842a3ce683e483ee303dd37d1a4f405 | |
parent | cca1ae79aa8a06205c93a39be780b32adb194022 (diff) |
egl: new src/egl/drivers/Makefile
-rw-r--r-- | src/egl/drivers/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/egl/drivers/Makefile b/src/egl/drivers/Makefile new file mode 100644 index 00000000000..837626e3d66 --- /dev/null +++ b/src/egl/drivers/Makefile @@ -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 |