Эх сурвалжийг харах

Makefile: Change default target to all

According to README.gnuefi,

To build the sample EFI applications provided in subdirectory "apps",
simply invoke "make" in the toplevel directory (the directory
containing this README file).  This should build lib/libefi.a and
gnuefi/libgnuefi.a first and then all the EFI applications such as a
apps/t6.efi.

The default target of top directory Makefile should be all instead of
gnuefi.

Signed-off-by: Letu Ren <fantasquex@gmail.com>
Letu Ren 3 жил өмнө
parent
commit
c26275184c
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      Makefile

+ 2 - 1
Makefile

@@ -44,10 +44,11 @@ VPATH = $(SRCDIR)
 include $(SRCDIR)/Make.defaults
 include $(SRCDIR)/Make.defaults
 
 
 SUBDIRS = lib gnuefi inc apps
 SUBDIRS = lib gnuefi inc apps
-gnuefi: lib
 
 
 all:	check_gcc $(SUBDIRS)
 all:	check_gcc $(SUBDIRS)
 
 
+gnuefi: lib
+
 mkvars:
 mkvars:
 	@echo AR=$(AR)
 	@echo AR=$(AR)
 	@echo ARCH=$(ARCH)
 	@echo ARCH=$(ARCH)