]> code.delx.au - refind/blobdiff - Makefile
TianoCore build support; new use_graphics_for refind.conf token
[refind] / Makefile
index f5963090f361ea40750ec69a09d0e9d002e2138c..d81ce19dbf640987870f58281826344dbdfe43f6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,14 +7,42 @@ SRCS=$(NAMES:=.c)
 OBJS=$(NAMES:=.o)
 HEADERS=$(NAMES:=.h)
 LOADER_DIR=refind
-LIB_DIR=libeg
+FS_DIR=filesystems
+LIBEG_DIR=libeg
+EFILIB_DIR=EfiLib
 
-# Build the Symbiote library itself.
+# Build rEFInd, including libeg
 all:
-       make -C $(LIB_DIR) -j 6
-       make -C $(LOADER_DIR) -j 6
+       make -C $(LIBEG_DIR)
+       make -C $(LOADER_DIR)
+#      make -C $(FS_DIR)
+
+fs:
+       make -C $(FS_DIR)
+
+tiano:
+       make AR_TARGET=EfiLib -C $(EFILIB_DIR) -f Make.tiano
+       make AR_TARGET=libeg -C $(LIBEG_DIR) -f Make.tiano
+       make BUILDME=refind DLL_TARGET=refind -C $(LOADER_DIR) -f Make.tiano
 
 clean:
-       make -C $(LIB_DIR) clean
+       make -C $(LIBEG_DIR) clean
        make -C $(LOADER_DIR) clean
+       make -C $(EFILIB_DIR) clean -f Make.tiano
+       make -C $(FS_DIR) clean
+       rm -f include/*~
+
+# NOTE TO DISTRIBUTION MAINTAINERS:
+# The "install" target installs the program directly to the ESP
+# and it modifies the *CURRENT COMPUTER's* NVRAM. Thus, you should
+# *NOT* use this target as part of the build process for your
+# binary packages (RPMs, Debian packages, etc.). (Gentoo could
+# use it in an ebuild, though....) You COULD, however, copy the
+# files to a directory somewhere (/usr/share/refind or whatever)
+# and then call install.sh as part of the binary package
+# installation process.
+
+install:
+       ./install.sh
+
 # DO NOT DELETE