diff options
author | Keith Whitwell <[email protected]> | 2005-01-07 10:34:13 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-01-07 10:34:13 +0000 |
commit | 000dd4afe2f4bad50101da6882354ea67444aeb2 (patch) | |
tree | 78a1479bfb4fe5a5448839e69e8cdd18dd86d2e3 /src | |
parent | 1837dda4d868b65441062942ec27ce8dd56e12bc (diff) |
Add an install target
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/Makefile b/src/mesa/drivers/dri/Makefile index 1c86a856905..8db675431d4 100644 --- a/src/mesa/drivers/dri/Makefile +++ b/src/mesa/drivers/dri/Makefile @@ -21,6 +21,12 @@ subdirs: done +install: + @for dir in $(DRI_DIRS) ; do \ + (cd $$dir ; $(MAKE) install) || exit 1; \ + done + + clean: @for dir in $(DRI_DIRS) ; do \ (cd $$dir ; $(MAKE) clean) ; \ |