mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
gallium: Allow state trackers to install files.
State trackers like es or vega need to install their libraries. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
parent
7fb41df2cb
commit
1046f70a7d
1 changed files with 5 additions and 1 deletions
|
|
@ -21,5 +21,9 @@ clean:
|
|||
rm -f `find . -name depend`
|
||||
|
||||
|
||||
# Dummy install target
|
||||
install:
|
||||
@for dir in $(SUBDIRS) ; do \
|
||||
if [ -d $$dir ] ; then \
|
||||
(cd $$dir && $(MAKE) $@) || exit 1 ; \
|
||||
fi \
|
||||
done
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue