*** empty log message ***

svn path=/trunk/; revision=498
This commit is contained in:
Emanuele Aliberti 1999-05-21 05:25:12 +00:00
parent cfe42a37eb
commit 659762910c
2 changed files with 11 additions and 4 deletions

View file

@ -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

View file

@ -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