]> code.delx.au - refind/blobdiff - Makefile
Misc. small changes.
[refind] / Makefile
index 704334ffdcbcc17111b94ae23501ea5dc4ced7f5..c21f2a86f8353a62149cf6cfee15b83958e592c3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,17 +7,34 @@ SRCS=$(NAMES:=.c)
 OBJS=$(NAMES:=.o)
 HEADERS=$(NAMES:=.h)
 LOADER_DIR=refind
+FS_DIR=filesystems
 LIB_DIR=libeg
 
-# Build the Symbiote library itself.
+# Build rEFInd, including libeg
 all:
        make -C $(LIB_DIR)
        make -C $(LOADER_DIR)
+#      make -C $(FS_DIR)
+
+fs:
+       make -C $(FS_DIR)
 
 clean:
        make -C $(LIB_DIR) clean
        make -C $(LOADER_DIR) clean
+       make -C $(FS_DIR) clean
+
+# 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