Przeglądaj źródła

Create $(TOP)/$(LIB_DIR) for install, too

If `make install' is run without running `make' first, the $(LIB_DIR)
will not be created. This also changes the mkdir a little bit so that it
isn't run if necessary and added `-p' so that it is immune to races.
tags/mesa_7_1_rc2
Dan Nicholson 17 lat temu
rodzic
commit
7ec5e6a032
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2
    2
      src/Makefile

+ 2
- 2
src/Makefile Wyświetl plik

@@ -21,7 +21,7 @@ subdirs:
fi \
done

install:
install: $(TOP)/$(LIB_DIR)
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE) install) || exit 1 ; \
@@ -29,7 +29,7 @@ install:
done

$(TOP)/$(LIB_DIR):
-mkdir $(TOP)/$(LIB_DIR)
-@test -d $(TOP)/$(LIB_DIR) || mkdir -p $(TOP)/$(LIB_DIR)


clean:

Ładowanie…
Anuluj
Zapisz