Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.142.171.199
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
automake-1.16 /
am /
[ HOME SHELL ]
Name
Size
Permission
Action
check.am
21.63
KB
-rw-r--r--
check2.am
2.14
KB
-rw-r--r--
clean-hdr.am
819
B
-rw-r--r--
clean.am
2.28
KB
-rw-r--r--
compile.am
1011
B
-rw-r--r--
configure.am
6.72
KB
-rw-r--r--
data.am
3.32
KB
-rw-r--r--
dejagnu.am
3.58
KB
-rw-r--r--
depend.am
1.16
KB
-rw-r--r--
depend2.am
5.95
KB
-rw-r--r--
distdir.am
21.77
KB
-rw-r--r--
footer.am
882
B
-rw-r--r--
header-vars.am
6.24
KB
-rw-r--r--
header.am
787
B
-rw-r--r--
inst-vars.am
3.39
KB
-rw-r--r--
install.am
3.9
KB
-rw-r--r--
java.am
2.79
KB
-rw-r--r--
lang-compile.am
1.17
KB
-rw-r--r--
lex.am
1.29
KB
-rw-r--r--
library.am
977
B
-rw-r--r--
libs.am
3.8
KB
-rw-r--r--
libtool.am
1.01
KB
-rw-r--r--
lisp.am
4.01
KB
-rw-r--r--
ltlib.am
4.88
KB
-rw-r--r--
ltlibrary.am
934
B
-rw-r--r--
mans-vars.am
858
B
-rw-r--r--
mans.am
6.34
KB
-rw-r--r--
program.am
1.2
KB
-rw-r--r--
progs.am
6.24
KB
-rw-r--r--
python.am
4.93
KB
-rw-r--r--
remake-hdr.am
3.14
KB
-rw-r--r--
scripts.am
4.6
KB
-rw-r--r--
subdirs.am
2.8
KB
-rw-r--r--
tags.am
5.04
KB
-rw-r--r--
texi-vers.am
2.42
KB
-rw-r--r--
texibuild.am
6.18
KB
-rw-r--r--
texinfos.am
13.13
KB
-rw-r--r--
vala.am
769
B
-rw-r--r--
yacc.am
2.35
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tags.am
## automake - create Makefile.in from Makefile.am ## Copyright (C) 1994-2018 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## You should have received a copy of the GNU General Public License ## along with this program. If not, see <https://www.gnu.org/licenses/>. # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ ## Handle VPATH correctly. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ## ---- ## ## ID. ## ## ---- ## ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique ## ------ ## ## TAGS. ## ## ------ ## ETAGS = etags .PHONY: TAGS tags if %?SUBDIRS% AM_RECURSIVE_TARGETS += TAGS RECURSIVE_TARGETS += tags-recursive tags: tags-recursive else !%?SUBDIRS% tags: tags-am endif !%?SUBDIRS% TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) ## We use the positional parameters to build the subdir list with ## absolute names, without the need to worry about white space in `pwd`. set x; \ here=`pwd`; \ ## Exuberant Ctags wants --etags-include, ## GNU Etags --include ## Furthermore Exuberant Ctags 5.5.4 fails to create TAGS files ## when no files are supplied, despite any --etags-include option. ## A workaround is to pass '.' as a file. This is what $empty_fix is for. ?SUBDIRS? if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ ?SUBDIRS? include_option=--etags-include; \ ?SUBDIRS? empty_fix=.; \ ?SUBDIRS? else \ ?SUBDIRS? include_option=--include; \ ?SUBDIRS? empty_fix=; \ ?SUBDIRS? fi; \ ?SUBDIRS? list='$(SUBDIRS)'; for subdir in $$list; do \ ## Do nothing if we're trying to look in '.'. ?SUBDIRS? if test "$$subdir" = .; then :; else \ ?SUBDIRS? test ! -f $$subdir/TAGS || \ ## Note that the = is mandatory for --etags-include. ?SUBDIRS? set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ ?SUBDIRS? fi; \ ?SUBDIRS? done; \ $(am__define_uniq_tagged_files); \ ## Remove the 'x' we added first: shift; \ ## Make sure we have something to run etags on. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ## --------------- ## ## vi-style tags. ## ## --------------- ## CTAGS = ctags .PHONY: CTAGS ctags if %?SUBDIRS% AM_RECURSIVE_TARGETS += CTAGS RECURSIVE_TARGETS += ctags-recursive ctags: ctags-recursive else !%?SUBDIRS% ctags: ctags-am endif !%?SUBDIRS% CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ ## Make sure we have something to run ctags on. test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique ## --------------- ## ## "Global tags". ## ## --------------- ## .PHONY: GTAGS GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" ## ------- ## ## cscope ## ## ------- ## if %?TOPDIR_P% CSCOPE = cscope .PHONY: cscope clean-cscope AM_RECURSIVE_TARGETS += cscope cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist endif %?TOPDIR_P% if %?SUBDIRS% RECURSIVE_TARGETS += cscopelist-recursive cscopelist: cscopelist-recursive else !%?SUBDIRS% cscopelist: cscopelist-am endif !%?SUBDIRS% cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files ## ---------- ## ## Cleaning. ## ## ---------- ## .PHONY distclean-am: distclean-tags distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags if %?TOPDIR_P% -rm -f cscope.out cscope.in.out cscope.po.out cscope.files endif %?TOPDIR_P%
Close