X-Git-Url: https://code.delx.au/refind/blobdiff_plain/37c98e1a4e30f80d6a7f7158bc27c81a1c3cac37..b04a842814ccc991ed93a52acbd7ac27768be686:/refind/Makefile diff --git a/refind/Makefile b/refind/Makefile index 6fe0b5b..88fbc40 100644 --- a/refind/Makefile +++ b/refind/Makefile @@ -30,18 +30,23 @@ ifeq ($(ARCH),aarch64) TARGET = refind_aa64.efi endif -LOCAL_CPPFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include -I$(SRCDIR)/../libeg -I$(SRCDIR)/../mok -LOCAL_LDFLAGS = -L$(SRCDIR)/../libeg/ -L$(SRCDIR)/../mok/ -L$(SRCDIR)/../EfiLib/ +LOCAL_GNUEFI_CFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include \ + -I$(SRCDIR)/../libeg -I$(SRCDIR)/../mok +LOCAL_LDFLAGS = -L$(SRCDIR)/../libeg/ -L$(SRCDIR)/../mok/ \ + -L$(SRCDIR)/../EfiLib/ LOCAL_LIBS = -leg -lmok -lEfiLib -OBJS = main.o mystrings.o apple.o line_edit.o config.o menu.o screen.o icns.o gpt.o crc32.o lib.o driver_support.o legacy.o - -all: $(TARGET) +OBJS = main.o mystrings.o apple.o line_edit.o config.o menu.o \ + screen.o icns.o gpt.o crc32.o lib.o driver_support.o \ + legacy.o include $(SRCDIR)/../Make.common +all: $(TARGET) + $(SHLIB_TARGET): $(OBJS) - $(LD) $(LOCAL_LDFLAGS) $(LDFLAGS) $(OBJS) -o $@ $(LOCAL_LIBS) $(LIBS) + $(LD) $(LOCAL_LDFLAGS) $(GNUEFI_LDFLAGS) $(SUBSYSTEM_LDFLAG) $(OBJS) \ + -o $@ $(LOCAL_LIBS) $(GNUEFI_LIBS) $(TARGET): $(SHLIB_TARGET) $(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic -j .dynsym -j .rel \ @@ -49,5 +54,7 @@ $(TARGET): $(SHLIB_TARGET) -j .reloc $(FORMAT) $< $@ chmod a-x $(TARGET) -# EOF -# DO NOT DELETE +clean: + rm -f $(TARGET) *~ *.so $(OBJS) *.efi *.obj refind_*.txt \ + refind_*.dll *.lib +