]> code.delx.au - refind/blobdiff - filesystems/test/Makefile
New files related to building drivers using GNU-EFI
[refind] / filesystems / test / Makefile
index 224c363a71e41e00ca3590ee4a4dbeffcc5d4ee0..d1ed07a889a1d93acf1eee585519e9836ab9296c 100644 (file)
@@ -8,7 +8,7 @@ FSW_NAMES       = ../fsw_core ../fsw_lib
 FSW_OBJS       = $(FSW_NAMES:=.o)
 LSLR_OBJS      = $(FSW_OBJS) ../fsw_$(DRIVERNAME).o fsw_posix.o lslr.o
 LSLR_BIN       = lslr
-LSROOT_OBJS    = $(FSW_OBJS) ../fsw_ext2.o fsw_posix.o lsroot.o
+LSROOT_OBJS    = $(FSW_OBJS) ../fsw_ext2.o ../fsw_ext4.o ../fsw_hfs.o ../fsw_iso9660.o ../fsw_reiserfs.o fsw_posix.o lsroot.o
 LSROOT_BIN     = lsroot
 
 
@@ -19,5 +19,8 @@ $(LSLR_BIN):  $(LSLR_OBJS)
 $(LSROOT_BIN): $(LSROOT_OBJS) 
                $(CC) $(CFLAGS) -o $(LSROOT_BIN) $(LSROOT_OBJS) $(LDFLAGS)
 
-all:           $(LSLR_BIN)
-               $(LSROOT_BIN)
+all:           $(LSLR_BIN) $(LSROOT_BIN)
+
+clean:         
+               @rm -f *.o ../*.o lslr lsroot
+