mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 17:08:20 +02:00
Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
23 lines
382 B
Makefile
23 lines
382 B
Makefile
# src/glu/Makefile
|
|
|
|
TOP = ../..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
|
|
SUBDIRS = $(GLU_DIRS)
|
|
|
|
|
|
default: $(TOP)/configs/current
|
|
@for dir in $(SUBDIRS) ; do \
|
|
(cd $$dir ; $(MAKE)) ; \
|
|
done
|
|
|
|
install:
|
|
$(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR)
|
|
$(COPY_LIBS) $(TOP)/$(LIB_DIR)/libGLU.* $(INSTALL_DIR)/$(LIB_DIR)
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
(cd $$dir ; $(MAKE) clean) ; \
|
|
done
|