removing unbuilt files and directories
This commit is contained in:
Родитель
d8caf32f9e
Коммит
4a58c8b35f
|
@ -28,10 +28,6 @@ include $(DEPTH)/config/autoconf.mk
|
|||
|
||||
DIRS = public src
|
||||
|
||||
ifdef MOZ_ENABLE_GTK_MOZILLA
|
||||
DIRS += embed
|
||||
endif
|
||||
|
||||
ifdef ENABLE_TESTS
|
||||
DIRS += tests
|
||||
endif
|
||||
|
|
|
@ -30,26 +30,5 @@ ifdef MOZ_ENABLE_XLIB
|
|||
DIRS = xlib
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_GTK_MOZILLA
|
||||
all:: export install
|
||||
|
||||
export depend::
|
||||
|
||||
install::
|
||||
@$(CONTINUE_ON_ERROR) \
|
||||
$(MAKE) -C gtk install; \
|
||||
$(EXIT_ON_ERROR)
|
||||
|
||||
clean clobber clobber_all realclean::
|
||||
@$(CONTINUE_ON_ERROR) \
|
||||
$(MAKE) -C gtk clean; \
|
||||
$(EXIT_ON_ERROR)
|
||||
|
||||
distclean::
|
||||
@$(CONTINUE_ON_ERROR) \
|
||||
$(MAKE) -C gtk distclean; \
|
||||
$(EXIT_ON_ERROR)
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
|
|
@ -1,40 +0,0 @@
|
|||
#! /bin/sh
|
||||
# mkinstalldirs --- make directory hierarchy
|
||||
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
|
||||
# Created: 1993-05-16
|
||||
# Public domain
|
||||
|
||||
# $Id: mkinstalldirs,v 1.1 1999-05-28 11:34:08 ramiro%netscape.com Exp $
|
||||
|
||||
errstatus=0
|
||||
|
||||
for file
|
||||
do
|
||||
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
|
||||
shift
|
||||
|
||||
pathcomp=
|
||||
for d
|
||||
do
|
||||
pathcomp="$pathcomp$d"
|
||||
case "$pathcomp" in
|
||||
-* ) pathcomp=./$pathcomp ;;
|
||||
esac
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
echo "mkdir $pathcomp"
|
||||
|
||||
mkdir "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
errstatus=$lasterr
|
||||
fi
|
||||
fi
|
||||
|
||||
pathcomp="$pathcomp/"
|
||||
done
|
||||
done
|
||||
|
||||
exit $errstatus
|
||||
|
||||
# mkinstalldirs ends here
|
Загрузка…
Ссылка в новой задаче