X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fglu%2FMakefile;h=5ddc50946aab2f5dae68962d6d2dc88fc068e1eb;hb=8e20c417d40f8b28467591545dee76c3ffd9dfe3;hp=2b922fc021dc7afe50c4a0c2032c4662f2824779;hpb=df8bc572587f04b29055bb3a36f8c3b724c63b96;p=mesa.git diff --git a/src/glu/Makefile b/src/glu/Makefile index 2b922fc021d..5ddc50946aa 100644 --- a/src/glu/Makefile +++ b/src/glu/Makefile @@ -10,11 +10,14 @@ SUBDIRS = $(GLU_DIRS) default: $(TOP)/configs/current @for dir in $(SUBDIRS) ; do \ - (cd $$dir ; make) ; \ + (cd $$dir ; $(MAKE)) ; \ done +install: + $(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR) + $(INSTALL) $(TOP)/$(LIB_DIR)/libGLU.* $(INSTALL_DIR)/$(LIB_DIR) clean: @for dir in $(SUBDIRS) ; do \ - (cd $$dir ; make clean) ; \ + (cd $$dir ; $(MAKE) clean) ; \ done