Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
snap /
gnome-42-2204 /
202 /
usr /
share /
dpkg /
[ HOME SHELL ]
Name
Size
Permission
Action
architecture.mk
643
B
-rw-r--r--
buildflags.mk
1.76
KB
-rw-r--r--
buildopts.mk
392
B
-rw-r--r--
buildtools.mk
2.63
KB
-rw-r--r--
default.mk
362
B
-rw-r--r--
no-pie-compile.specs
77
B
-rw-r--r--
no-pie-link.specs
65
B
-rw-r--r--
pie-compile.specs
97
B
-rw-r--r--
pie-link.specs
76
B
-rw-r--r--
pkg-info.mk
1.53
KB
-rw-r--r--
vendor.mk
1.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : buildtools.mk
# This Makefile fragment (since dpkg 1.19.0) defines the following variables # for host tools: # # AS: assembler (since dpkg 1.19.1). # CPP: C preprocessor. # CC: C compiler. # CXX: C++ compiler. # OBJC: Objective C compiler. # OBJCXX: Objective C++ compiler. # GCJ: GNU Java compiler. # F77: Fortran 77 compiler. # FC: Fortran 9x compiler. # LD: linker. # STRIP: strip objects (since dpkg 1.19.1). # OBJCOPY: copy objects (since dpkg 1.19.1). # OBJDUMP: dump objects (since dpkg 1.19.1). # NM: names lister (since dpkg 1.19.1). # AR: archiver (since dpkg 1.19.1). # RANLIB: archive index generator (since dpkg 1.19.1). # PKG_CONFIG: pkg-config tool. # QMAKE: Qt build system generator (since dpkg 1.20.0). # # All the above variables have a counterpart variable for the build tool, # as in CC → CC_FOR_BUILD. # # The variables are not exported by default. This can be changed by # defining DPKG_EXPORT_BUILDTOOLS. dpkg_datadir = /usr/share/dpkg include $(dpkg_datadir)/architecture.mk # We set the TOOL_FOR_BUILD variables to the specified value, and the TOOL # variables (for the host) to the their triplet-prefixed form iff they are # not defined or contain the make built-in defaults. On native builds if # TOOL is defined and TOOL_FOR_BUILD is not, we fallback to use TOOL. define dpkg_buildtool_setvar ifeq (,$(findstring $(3),$(DEB_BUILD_OPTIONS))) ifeq ($(origin $(1)),default) $(1) = $(DEB_HOST_GNU_TYPE)-$(2) endif $(1) ?= $(DEB_HOST_GNU_TYPE)-$(2) # On native build fallback to use TOOL if that's defined. ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) ifdef $(1) $(1)_FOR_BUILD ?= $$($(1)) endif endif $(1)_FOR_BUILD ?= $(DEB_BUILD_GNU_TYPE)-$(2) else $(1) = : $(1)_FOR_BUILD = : endif ifdef DPKG_EXPORT_BUILDTOOLS export $(1) export $(1)_FOR_BUILD endif endef $(eval $(call dpkg_buildtool_setvar,AS,as)) $(eval $(call dpkg_buildtool_setvar,CPP,gcc -E)) $(eval $(call dpkg_buildtool_setvar,CC,gcc)) $(eval $(call dpkg_buildtool_setvar,CXX,g++)) $(eval $(call dpkg_buildtool_setvar,OBJC,gcc)) $(eval $(call dpkg_buildtool_setvar,OBJCXX,g++)) $(eval $(call dpkg_buildtool_setvar,GCJ,gcj)) $(eval $(call dpkg_buildtool_setvar,F77,f77)) $(eval $(call dpkg_buildtool_setvar,FC,f77)) $(eval $(call dpkg_buildtool_setvar,LD,ld)) $(eval $(call dpkg_buildtool_setvar,STRIP,strip,nostrip)) $(eval $(call dpkg_buildtool_setvar,OBJCOPY,objcopy)) $(eval $(call dpkg_buildtool_setvar,OBJDUMP,objdump)) $(eval $(call dpkg_buildtool_setvar,NM,nm)) $(eval $(call dpkg_buildtool_setvar,AR,ar)) $(eval $(call dpkg_buildtool_setvar,RANLIB,ranlib)) $(eval $(call dpkg_buildtool_setvar,PKG_CONFIG,pkg-config)) $(eval $(call dpkg_buildtool_setvar,QMAKE,qmake))
Close