]> code.delx.au - refind/blobdiff - Makefile
Added filesystem drivers.
[refind] / Makefile
index 2b7a5499f01ac738eae3d86e69c491fc0c8da1ea..9b6ee1079c8bc5696343e0f493dbd9ec853b011c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,14 +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.
 all:
        make -C $(LIB_DIR)
        make -C $(LOADER_DIR)
+#      make -C $(FS_DIR)
+
+filesystems:
+       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