summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-06-27 19:35:27 +0200
committerAaron Bauman <bman@gentoo.org>2020-06-27 16:48:01 -0400
commit110d5be016fbc1b1f155d8f1f42d4c70a6645312 (patch)
tree0db4c77ddc19eae4f5fbd04dcdef07f5a4788c66 /sys-boot
parentsys-cluster/ceph: remove unused patches (diff)
downloadgentoo-110d5be016fbc1b1f155d8f1f42d4c70a6645312.tar.gz
gentoo-110d5be016fbc1b1f155d8f1f42d4c70a6645312.tar.bz2
gentoo-110d5be016fbc1b1f155d8f1f42d4c70a6645312.zip
sys-boot/udk: remove unused file
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/16450 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/udk/files/2018-makefile.template41
1 files changed, 0 insertions, 41 deletions
diff --git a/sys-boot/udk/files/2018-makefile.template b/sys-boot/udk/files/2018-makefile.template
deleted file mode 100644
index 049a94facd81..000000000000
--- a/sys-boot/udk/files/2018-makefile.template
+++ /dev/null
@@ -1,41 +0,0 @@
-TOP := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
-BASE_NAME = «MODULE»
-EXEC = «MODULE».efi
-SRC = $(shell find $(TOP) -type f -name '*.c')
-OBJ = $(SRC:.c=.o)
-INC_DIR = /usr/include/«PACKAGE_NAME»
-LIB_DIR = «LIB_DIR»
-DEST_DIR_DEBUG = .
-«STATIC_LIBS»
-
-EFI_LDS = «EFI_LDS»
-«MODULE_TYPE»
-«VARIABLES»
-
-comma:= ,
-empty:=
-space:= $(empty) $(empty)
-
-all: $(EXEC)
-
-%.efi: $(OBJ)
- $(DLINK) -o $(@:.efi=.dll) $(DLINK_FLAGS) \
- -Wl,--script,$(EFI_LDS) -Wl,--defsym=PECOFF_HEADER_SIZE=«PECOFF_HEADER_SIZE» \
- -Wl,$(subst $(space),$(comma),--start-group $(STATIC_LIBRARY_FILES)$^ --end-group)
- $(OBJCOPY) $(OBJCOPY_FLAGS) $(@:.efi=.dll)
- $(CP) $(@:.efi=.dll) $(@:.efi=.debug)
- $(OBJCOPY) --strip-unneeded -R .eh_frame $(@:.efi=.dll)
- $(OBJCOPY) --add-gnu-debuglink=$(@:.efi=.debug) $(@:.efi=.dll)
- $(GENFW) -e $(MODULE_TYPE) -o $@ $(@:.efi=.dll) $(GENFW_FLAGS)
- $(RM) $(@:.efi=.dll)
-
-%.o: %.c
- $(CC) $(CC_FLAGS) -I$(INC_DIR) -iquote$(TOP) -c -o $@ $^
-
-clean:
- $(RM) *.o
-
-mrproper: clean
- $(RM) $(EXEC) $(EXEC:.efi=.debug)
-
-.PHONY: all clean mrproper