]> code.delx.au - refind/blobdiff - filesystems/Makefile
Add warning to refind-install when --alldrivers is used without
[refind] / filesystems / Makefile
index 4aa838e2c19aa63a396548be1ec8b3a14eba687c..99452ed65d0ea2bde4857f4f4418b6ec6820ac95 100644 (file)
@@ -6,10 +6,15 @@
 # in the fsw_efi.c file on the filesystem type; this file must be
 # recompiled for each new filesystem built.
 
+# This program is licensed under the terms of the GNU GPL, version 3,
+# or (at your option) any later version.
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
 INSTALL_DIR = /boot/efi/EFI/refind/drivers
 
-FILESYSTEMS = ext2 ext4 reiserfs iso9660 hfs btrfs
-FILESYSTEMS_GNUEFI = ext2_gnuefi ext4_gnuefi reiserfs_gnuefi iso9660_gnuefi hfs_gnuefi btrfs_gnuefi
+FILESYSTEMS = ext2 ext4 reiserfs iso9660 hfs btrfs ntfs
+FILESYSTEMS_GNUEFI = ext2_gnuefi ext4_gnuefi reiserfs_gnuefi iso9660_gnuefi hfs_gnuefi btrfs_gnuefi ntfs_gnuefi
 TEXTFILES = $(FILESYSTEMS:=*.txt)
 
 # Build the drivers with TianoCore EDK2.....
@@ -40,6 +45,10 @@ btrfs:
        rm -f fsw_efi.obj
        +make DRIVERNAME=btrfs -f Make.tiano
 
+ntfs:
+       rm -f fsw_efi.obj
+       +make DRIVERNAME=ntfs -f Make.tiano
+
 # Build the drivers with GNU-EFI....
 
 gnuefi: $(FILESYSTEMS_GNUEFI)
@@ -70,6 +79,10 @@ btrfs_gnuefi:
        rm -f fsw_efi.o
        +make DRIVERNAME=btrfs -f Make.gnuefi
 
+ntfs_gnuefi:
+       rm -f fsw_efi.o
+       +make DRIVERNAME=ntfs -f Make.gnuefi
+
 # utility rules
 
 clean: