diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-06 10:24:11 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-06 10:24:11 +0100 |
commit | 4538829ab86b5a1cd4e845e7eab165029c9d6d46 (patch) | |
tree | bbadf39aed0610c8f8f7b41fefff47773b8ac205 /build-0.3/c/intel/c-o.make | |
parent | 23d41842168ac1a1580111b9c5c73500ceee3d57 (diff) | |
parent | aad5ad9bf0c02aa4e79bc6b7d6c934612fff4026 (diff) |
Update upstream source from tag 'upstream/4.2.0'
Update to upstream version '4.2.0'
with Debian dir 1b38df7bbcf313223de3c50107ac0255090fe647
Diffstat (limited to 'build-0.3/c/intel/c-o.make')
-rw-r--r-- | build-0.3/c/intel/c-o.make | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/build-0.3/c/intel/c-o.make b/build-0.3/c/intel/c-o.make deleted file mode 100644 index e925b50..0000000 --- a/build-0.3/c/intel/c-o.make +++ /dev/null @@ -1,40 +0,0 @@ -# file : build/c/intel/c-o.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(call include-once,$(bld_root)/c/cpp-options.make,$(out_base)) -$(call include,$(bld_root)/c/intel/configuration.make) - -$(out_base)/%.o: c := $(c_intel) -$(out_base)/%.o: c_options := $(c_intel_optimization_options) $(c_intel_debugging_options) - -#@@ wrong prefix -# -$(out_base)/%.o: expand-cpp-options-impl = \ -$(if $1,$(shell sed -e 's%include: \(.*\)%\1%' -e t -e d $1)) - -$(out_base)/%.o: expand-cpp-options = \ -$(call expand-cpp-options-impl,$(filter %.cpp-options,$1)) - -ifeq ($(out_base),$(src_base)) -$(out_base)/%.o: $(src_base)/%.$(c_s_suffix) -else -$(out_base)/%.o: $(src_base)/%.$(c_s_suffix) | $$(dir $$@). -endif - $(call message,c $<,$(c) \ -$(cpp_options) $(call expand-cpp-options,$^) $(c_pp_extra_options) $(c_options) \ -$(c_pic_options) $(subst y,-fexceptions,$(filter y,$(c_exceptions))) $(c_extra_options) -o $@ -c $<) - -ifneq ($(out_base),$(src_base)) - -$(out_base)/%.o: $(out_base)/%.$(c_s_suffix) | $$(dir $$@). - $(call message,c $<,$(c) \ -$(cpp_options) $(call expand-cpp-options,$^) $(c_pp_extra_options) $(c_options) \ -$(c_pic_options) $(subst y,-fexceptions,$(filter y,$(c_exceptions))) $(c_extra_options) -o $@ -c $<) - -endif - -.PHONY: $(out_base)/%.o.$(c_s_suffix).clean - -$(out_base)/%.o.$(c_s_suffix).clean: - $(call message,rm $$1,rm -f $$1,$(basename $(basename $@))) |