diff options
Diffstat (limited to 'nx-X11/extras/Mesa/src/Makefile')
-rw-r--r-- | nx-X11/extras/Mesa/src/Makefile | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/nx-X11/extras/Mesa/src/Makefile b/nx-X11/extras/Mesa/src/Makefile deleted file mode 100644 index ffe2dbc6a..000000000 --- a/nx-X11/extras/Mesa/src/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# src/Makefile - -TOP = .. - -include $(TOP)/configs/current - -SUBDIRS = $(SRC_DIRS) - - -default: message $(LIB_DIR) subdirs - - -message: - @echo "Making sources for" $(CONFIG_NAME) - - -subdirs: - @for dir in $(SUBDIRS) ; do \ - if [ -d $$dir ] ; then \ - (cd $$dir ; $(MAKE)) || exit 1 ; \ - fi \ - done - - -$(LIB_DIR): - -mkdir $(LIB_DIR) - - -clean: - @for dir in $(SUBDIRS) ; do \ - if [ -d $$dir ] ; then \ - (cd $$dir ; $(MAKE) clean) ; \ - fi \ - done |