diff --git a/reactos/lib/fmifs/fmifs.def b/reactos/lib/fmifs/fmifs.def index 3333b09f6ee..f63c68bb24a 100644 --- a/reactos/lib/fmifs/fmifs.def +++ b/reactos/lib/fmifs/fmifs.def @@ -1,4 +1,4 @@ -; $IdŁ +; $Id: fmifs.def,v 1.2 1999/05/21 05:25:12 ea Exp $ ; ; fmifs.def ; @@ -12,11 +12,14 @@ ; LIBRARY fmifs EXPORTS + Chkdsk@36 Chkdsk = Chkdsk@36 DiskCopy = DiskCopy@0 + EnableVolumeCompression@8 EnableVolumeCompression = EnableVolumeCompression@8 Extend = Extend@0 Format = Format@0 + FormatEx@28 FormatEx = FormatEx@28 InitializeFmIfs = InitializeFmIfs@0 QuerySupportedMedia = QuerySupportedMedia@0 diff --git a/reactos/lib/fmifs/makefile b/reactos/lib/fmifs/makefile index dbce55edd5e..e44e98af78f 100644 --- a/reactos/lib/fmifs/makefile +++ b/reactos/lib/fmifs/makefile @@ -1,3 +1,7 @@ +# $Id: makefile,v 1.2 1999/05/21 05:25:12 ea Exp $ +# +# Makefile for fmifs.dll +# TARGET=fmifs ifneq ($(HOST),mingw32-windows) ifneq ($(HOST),mingw32-linux) @@ -18,10 +22,10 @@ MISC_OBJECTS = dllmain.o $(TARGET).coff OBJECTS = $(IFS_OBJECTS) $(MISC_OBJECTS) -CLEAN_FILES = *.o *.tmp *.dll *.sym +CLEAN_FILES = *.o *.a *.tmp *.dll *.sym *.coff $(TARGET).coff: $(TARGET).rc ../../include/reactos/resource.h - windres $(TARGET).rc $(TARGET).coff + $(RC) $(TARGET).rc $(TARGET).coff $(TARGET).a: $(OBJECTS) $(AR) csr $(TARGET).a $(OBJECTS) @@ -70,4 +74,4 @@ $(CLEAN_FILES:%=%_clean): %_clean: include ../../rules.mak - +# EOF