mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
*** empty log message ***
svn path=/trunk/; revision=498
This commit is contained in:
parent
cfe42a37eb
commit
659762910c
2 changed files with 11 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue