diff options
author | Johannes Engel <[email protected]> | 2009-02-11 11:31:05 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-02-11 07:01:40 +0100 |
commit | 1e81855566b8c9957b39ee4612cec24bea591785 (patch) | |
tree | e6555766cbb3787eb2c23953349956a9b0cc6756 /src/egl/Makefile | |
parent | 5f750138228be4438c592485290abdc6f8458271 (diff) |
Add install target for egl
Signed-off-by: Johannes Engel <[email protected]>
Acked-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/egl/Makefile')
-rw-r--r-- | src/egl/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/egl/Makefile b/src/egl/Makefile index 024453f8bb1..5b09e178c63 100644 --- a/src/egl/Makefile +++ b/src/egl/Makefile @@ -1,6 +1,7 @@ # src/egl/Makefile TOP = ../.. +include $(TOP)/configs/current SUBDIRS = main drivers @@ -15,6 +16,12 @@ subdirs: fi \ done +install: + @for dir in $(SUBDIRS) ; do \ + if [ -d $$dir ] ; then \ + (cd $$dir && $(MAKE) install) || exit 1 ; \ + fi \ + done clean: -@for dir in $(SUBDIRS) ; do \ |