mirror of
https://github.com/rhboot/efibootmgr.git
synced 2026-01-26 20:19:28 +00:00
We're making a lot less stuff than we did before libefivar.so existed, and there's not a lot of reason for it. Collapse the directory structure entirely, and move to more modern makefiles. Signed-off-by: Peter Jones <pjones@redhat.com>
16 lines
322 B
Plaintext
16 lines
322 B
Plaintext
SRCDIR = $(realpath .)
|
|
TOPDIR = $(realpath ..)
|
|
|
|
include $(TOPDIR)/Make.version
|
|
include $(TOPDIR)/Make.rules
|
|
include $(TOPDIR)/Make.defaults
|
|
|
|
.%.d : %.c
|
|
$(CC) $(cflags) $(CPPFLAGS) -MM -MG -MF $@ $^
|
|
|
|
.%.d : %.S
|
|
$(CC) $(cflags) $(CPPFLAGS) -MM -MG -MF $@ $^
|
|
|
|
SOURCES ?=
|
|
deps : $(call deps-of,$(filter-out %.h,$(SOURCES)))
|