Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/udk/files/
Date: Sat, 27 Jun 2020 20:51:35
Message-Id: 1593290881.110d5be016fbc1b1f155d8f1f42d4c70a6645312.bman@gentoo
1 commit: 110d5be016fbc1b1f155d8f1f42d4c70a6645312
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Jun 27 17:35:27 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 27 20:48:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=110d5be0
7
8 sys-boot/udk: remove unused file
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/16450
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 sys-boot/udk/files/2018-makefile.template | 41 -------------------------------
16 1 file changed, 41 deletions(-)
17
18 diff --git a/sys-boot/udk/files/2018-makefile.template b/sys-boot/udk/files/2018-makefile.template
19 deleted file mode 100644
20 index 049a94facd8..00000000000
21 --- a/sys-boot/udk/files/2018-makefile.template
22 +++ /dev/null
23 @@ -1,41 +0,0 @@
24 -TOP := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
25 -BASE_NAME = «MODULE»
26 -EXEC = «MODULE».efi
27 -SRC = $(shell find $(TOP) -type f -name '*.c')
28 -OBJ = $(SRC:.c=.o)
29 -INC_DIR = /usr/include/«PACKAGE_NAME»
30 -LIB_DIR = «LIB_DIR»
31 -DEST_DIR_DEBUG = .
32 -«STATIC_LIBS»
33 -
34 -EFI_LDS = «EFI_LDS»
35 -«MODULE_TYPE»
36 -«VARIABLES»
37 -
38 -comma:= ,
39 -empty:=
40 -space:= $(empty) $(empty)
41 -
42 -all: $(EXEC)
43 -
44 -%.efi: $(OBJ)
45 - $(DLINK) -o $(@:.efi=.dll) $(DLINK_FLAGS) \
46 - -Wl,--script,$(EFI_LDS) -Wl,--defsym=PECOFF_HEADER_SIZE=«PECOFF_HEADER_SIZE» \
47 - -Wl,$(subst $(space),$(comma),--start-group $(STATIC_LIBRARY_FILES)$^ --end-group)
48 - $(OBJCOPY) $(OBJCOPY_FLAGS) $(@:.efi=.dll)
49 - $(CP) $(@:.efi=.dll) $(@:.efi=.debug)
50 - $(OBJCOPY) --strip-unneeded -R .eh_frame $(@:.efi=.dll)
51 - $(OBJCOPY) --add-gnu-debuglink=$(@:.efi=.debug) $(@:.efi=.dll)
52 - $(GENFW) -e $(MODULE_TYPE) -o $@ $(@:.efi=.dll) $(GENFW_FLAGS)
53 - $(RM) $(@:.efi=.dll)
54 -
55 -%.o: %.c
56 - $(CC) $(CC_FLAGS) -I$(INC_DIR) -iquote$(TOP) -c -o $@ $^
57 -
58 -clean:
59 - $(RM) *.o
60 -
61 -mrproper: clean
62 - $(RM) $(EXEC) $(EXEC:.efi=.debug)
63 -
64 -.PHONY: all clean mrproper