commit:     110d5be016fbc1b1f155d8f1f42d4c70a6645312
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Jun 27 17:35:27 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Jun 27 20:48:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=110d5be0

sys-boot/udk: remove unused file

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16450
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 sys-boot/udk/files/2018-makefile.template | 41 -------------------------------
 1 file changed, 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 049a94facd8..00000000000
--- 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

Reply via email to