OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
dpkg
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
abitable
362 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
architecture.mk
614 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
buildflags.mk
1.55 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
buildtools.mk
1.74 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
cputable
1.92 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
default.mk
271 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
no-pie-compile.specs
77 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
no-pie-link.specs
65 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
ostable
1.95 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
pie-compile.specs
97 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
pie-link.specs
76 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
pkg-info.mk
1.47 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
tupletable
1.33 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
vendor.mk
803 bytes
05/25/2022 11:14:56 AM
rw-r--r--
Editing: buildflags.mk
Close
# This Makefile snippet defines the following variables: # # CFLAGS: flags for the C compiler # CPPFLAGS: flags for the C preprocessor # CXXFLAGS: flags for the C++ compiler # OBJCFLAGS: flags for the Objective C compiler # OBJCXXFLAGS: flags for the Objective C++ compiler # GCJFLAGS: flags for the GNU Java compiler # FFLAGS: flags for the Fortran 77 compiler # FCFLAGS: flags for the Fortran 9x compiler # LDFLAGS: flags for the linker # # You can also export them in the environment by setting # DPKG_EXPORT_BUILDFLAGS to a non-empty value. # # This list is kept in sync with the default set of flags returned # by dpkg-buildflags. dpkg_lazy_eval ?= $$(or $$(value DPKG_CACHE_$(1)),$$(eval DPKG_CACHE_$(1) := $$(shell $(2)))$$(value DPKG_CACHE_$(1))) DPKG_BUILDFLAGS_LIST = CFLAGS CPPFLAGS CXXFLAGS OBJCFLAGS OBJCXXFLAGS \ GCJFLAGS FFLAGS FCFLAGS LDFLAGS define dpkg_buildflags_export_envvar ifdef $(1) DPKG_BUILDFLAGS_EXPORT_ENVVAR += $(1)="$$(value $(1))" endif endef $(eval $(call dpkg_buildflags_export_envvar,DEB_BUILD_OPTIONS)) $(eval $(call dpkg_buildflags_export_envvar,DEB_BUILD_MAINT_OPTIONS)) $(foreach flag,$(DPKG_BUILDFLAGS_LIST),\ $(foreach operation,SET STRIP APPEND PREPEND,\ $(eval $(call dpkg_buildflags_export_envvar,DEB_$(flag)_MAINT_$(operation))))) dpkg_buildflags_setvar = $(1) = $(call dpkg_lazy_eval,$(1),$(DPKG_BUILDFLAGS_EXPORT_ENVVAR) dpkg-buildflags --get $(1)) $(foreach flag,$(DPKG_BUILDFLAGS_LIST),\ $(eval $(call dpkg_buildflags_setvar,$(flag)))) ifdef DPKG_EXPORT_BUILDFLAGS export $(DPKG_BUILDFLAGS_LIST) endif