mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
Added floppy makefile and version resource file
svn path=/trunk/; revision=1270
This commit is contained in:
parent
768ab2e5dc
commit
07b9585e22
2 changed files with 109 additions and 0 deletions
70
reactos/drivers/dd/floppy/Makefile
Normal file
70
reactos/drivers/dd/floppy/Makefile
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
# $Id: Makefile,v 1.1 2000/07/19 14:25:35 dwelch Exp $
|
||||||
|
#
|
||||||
|
#
|
||||||
|
TARGET=floppy
|
||||||
|
|
||||||
|
OBJECTS = $(TARGET).o $(TARGET).coff ../../../ntoskrnl/ntoskrnl.a
|
||||||
|
|
||||||
|
BASE_CFLAGS = -I. -I../../../include
|
||||||
|
|
||||||
|
all: $(TARGET).sys
|
||||||
|
|
||||||
|
.phony: all
|
||||||
|
|
||||||
|
clean:
|
||||||
|
- $(RM) $(TARGET).o
|
||||||
|
- $(RM) $(TARGET).coff
|
||||||
|
- $(RM) junk.tmp
|
||||||
|
- $(RM) base.tmp
|
||||||
|
- $(RM) temp.exp
|
||||||
|
- $(RM) $(TARGET).sys
|
||||||
|
|
||||||
|
.phony: clean
|
||||||
|
|
||||||
|
floppy: $(FLOPPY_DIR)/drivers/$(TARGET).sys
|
||||||
|
|
||||||
|
$(FLOPPY_DIR)/drivers/$(TARGET).sys: $(TARGET).sys
|
||||||
|
ifeq ($(DOSCLI),yes)
|
||||||
|
$(CP) $(TARGET).sys $(FLOPPY_DIR)\drivers\$(TARGET).sys
|
||||||
|
else
|
||||||
|
$(CP) $(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys
|
||||||
|
endif
|
||||||
|
|
||||||
|
dist: ../../../$(DIST_DIR)/drivers/$(TARGET).sys
|
||||||
|
|
||||||
|
../../../$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys
|
||||||
|
ifeq ($(DOSCLI),yes)
|
||||||
|
$(CP) $(TARGET).sys ..\..\..\$(DIST_DIR)\drivers\$(TARGET).sys
|
||||||
|
else
|
||||||
|
$(CP) $(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys
|
||||||
|
endif
|
||||||
|
|
||||||
|
$(TARGET).sys: $(OBJECTS)
|
||||||
|
$(CC) \
|
||||||
|
-specs=../../svc_specs \
|
||||||
|
-mdll \
|
||||||
|
-o junk.tmp \
|
||||||
|
-Wl,--defsym,_end=end \
|
||||||
|
-Wl,--defsym,_edata=__data_end__ \
|
||||||
|
-Wl,--defsym,_etext=etext \
|
||||||
|
-Wl,--base-file,base.tmp $(OBJECTS)
|
||||||
|
- $(RM) junk.tmp
|
||||||
|
$(DLLTOOL) \
|
||||||
|
--dllname $(TARGET).sys \
|
||||||
|
--base-file base.tmp \
|
||||||
|
--output-exp temp.exp \
|
||||||
|
--kill-at
|
||||||
|
- $(RM) base.tmp
|
||||||
|
$(CC) \
|
||||||
|
--verbose \
|
||||||
|
-Wl,--image-base,0x10000 \
|
||||||
|
-Wl,-e,_DriverEntry@8 \
|
||||||
|
-Wl,temp.exp \
|
||||||
|
-specs=../../svc_specs \
|
||||||
|
-mdll \
|
||||||
|
-o $(TARGET).sys \
|
||||||
|
$(OBJECTS)
|
||||||
|
- $(RM) temp.exp
|
||||||
|
|
||||||
|
WITH_DEBUGGING=yes
|
||||||
|
include ../../../rules.mak
|
39
reactos/drivers/dd/floppy/floppy.rc
Normal file
39
reactos/drivers/dd/floppy/floppy.rc
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
|
||||||
|
#include <defines.h>
|
||||||
|
#include <reactos/resource.h>
|
||||||
|
|
||||||
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||||
|
|
||||||
|
VS_VERSION_INFO VERSIONINFO
|
||||||
|
FILEVERSION RES_UINT_FV_MAJOR,RES_UINT_FV_MINOR,RES_UINT_FV_REVISION,RES_UINT_FV_BUILD
|
||||||
|
PRODUCTVERSION RES_UINT_PV_MAJOR,RES_UINT_PV_MINOR,RES_UINT_PV_REVISION,RES_UINT_PV_BUILD
|
||||||
|
FILEFLAGSMASK 0x3fL
|
||||||
|
#ifdef _DEBUG
|
||||||
|
FILEFLAGS 0x1L
|
||||||
|
#else
|
||||||
|
FILEFLAGS 0x0L
|
||||||
|
#endif
|
||||||
|
FILEOS 0x40004L
|
||||||
|
FILETYPE 0x2L
|
||||||
|
FILESUBTYPE 0x0L
|
||||||
|
BEGIN
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
BEGIN
|
||||||
|
BLOCK "040904b0"
|
||||||
|
BEGIN
|
||||||
|
VALUE "CompanyName", RES_STR_COMPANY_NAME
|
||||||
|
VALUE "FileDescription", "Floppy Device Driver\0"
|
||||||
|
VALUE "FileVersion", "0.1.4\0"
|
||||||
|
VALUE "InternalName", "floppy\0"
|
||||||
|
VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT
|
||||||
|
VALUE "OriginalFilename", "floppy.sys\0"
|
||||||
|
VALUE "ProductName", RES_STR_PRODUCT_NAME
|
||||||
|
VALUE "ProductVersion", RES_STR_PRODUCT_VERSION
|
||||||
|
END
|
||||||
|
END
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
BEGIN
|
||||||
|
VALUE "Translation", 0x409, 1200
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue