- Timestamp:
- Jan 4, 2016, 3:39:37 PM (10 years ago)
- Author:
- Valery V. Sedletski
- Message:
-
Makefile changes for ufat32.dll
- Location:
- branches/fat32-0.10/src/ufat32
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/fat32-0.10/src/ufat32/format.c
r101 r107 156 156 //sprintf(Str, "%.2f%%...", fPercentWritten); 157 157 158 if ( fPercentWritten - fPrevPercentWritten >= (削除) 5 (削除ここまで))158 if ( fPercentWritten - fPrevPercentWritten >= (追記) 10 (追記ここまで) ) 159 159 { 160 160 // update progress indicator if it has grown by >= 5% -
branches/fat32-0.10/src/ufat32/makefile.icc
r97 r107 11 11 !ENDIF 12 12 13 MSGBIND (削除) = (削除ここまで)msgbind.exe13 MSGBIND(追記) = (追記ここまで)msgbind.exe 14 14 CC = icc.exe 15 15 LINK = ilink.exe 16 16 17 17 CFLAGS = /I..\include /Q+ /DOS2 /W3 /Tl1 /Sm /Ss /Gm /Gd- /Gf /G5 /Gt /C $(COPTS) 18 LINKOPT = /NOI $(LOPTS) /PM:VIO /STACK:10000 /ALIGN:4 /MAP /BASE:0x10000 18 LINKOPT = /NOI $(LOPTS) /ALIGN:4 /MAP 19 # /STACK:10000 /PM:VIO /BASE:0x10000 19 20 WOPTS=/W3 /Wdcl /Weff /Wpar /Wpro /Wrea /Wret /Wuse 20 21 22 (追記) OBJ_1 = format.obj msg.obj os2.obj (追記ここまで) 23 (追記) OBJ_2 = ufat32.obj chkdsk.obj $(OBJ_1) (追記ここまで) 24 (追記) (追記ここまで) 25 (追記) .SUFFIXES: (追記ここまで) 26 (追記) .SUFFIXES: .sym .map .exe .dll .obj .c .h .asm .inc (追記ここまで) 27 (追記) (追記ここまで) 28 (追記) ALL: ufat32.dll ufat32.sym #fat32fmt.exe fat32fmt.sym (追記ここまで) 21 29 22 30 .c.obj: 23 31 $(CC) $(CFLAGS) $(WOPTS) .\$*.c 24 32 25 (削除) .obj.exe: (削除ここまで)26 (削除) -7 $(LINK) /NOFREE /NOL $(LINKOPT) @<< (削除ここまで)27 (削除) (削除ここまで)28 33 .map.sym: 29 34 @mapsym $*.map >nul 2>&1 30 35 31 $< 36 #$< 37 #$@ 38 #$*.MAP 39 #LIBCONV.LIB+ 40 #LIBULS.LIB; 41 #<<NOKEEP 42 # $(MSGBIND) << 43 #> $@ 44 #< $(IBMC)\HELP\DDE4.MSG 45 #* 46 #<<NOKEEP 47 48 ufat32.dll : $(OBJ_2) 49 -7 $(LINK) /NOFREE /NOL /DLL $(LINKOPT) @<< 50 $(OBJ_2: = +^ 51 ) 32 52 $@ 33 $*.MAP 34 LIBCONV.LIB+ 35 LIBULS.LIB; 36 <<NOKEEP 37 $(MSGBIND) << 38 > $@ 39 < $(IBMC)\HELP\DDE4.MSG 40 * 53 $*.map 54 55 ..\lib\$*.def; 41 56 <<NOKEEP 42 57 58 (追記) fat32fmt.exe : $(OBJ_1) (追記ここまで) 59 (追記) -7 $(LINK) /NOFREE /NOL $(LINKOPT) @<< (追記ここまで) 60 (追記) $(OBJ_1: = +^ (追記ここまで) 61 (追記) ) (追記ここまで) 62 (追記) $@ (追記ここまで) 63 (追記) $*.map (追記ここまで) 43 64 44 ALL: fat32fmt.exe ufat32.dll # fat32fmt.sym ufat32.sym 45 46 OBJS=ufat32.obj format.obj chkdsk.obj msg.obj os2.obj 47 ufat32.dll : $(OBJS) 48 -7 $(LINK) /NOFREE /NOL $(LINKOPT) @<< 49 $(OBJS: = +^) 50 $@ 51 $*.MAP; 65 ..\lib\$*.def; 52 66 <<NOKEEP 53 67 54 fat32fmt.exe : format.obj msg.obj os2.obj 55 -7 $(LINK) /NOFREE /NOL $(LINKOPT) @<< 56 $? 57 $@ 58 $*.MAP; 59 <<NOKEEP 60 61 ufat32.dll : ufat32.obj format.obj chkdsk.obj msg.obj os2.obj 62 fat32fmt.exe : format.obj msg.obj os2.obj 68 format.obj : format.c ..\include\fat32c.h 69 chkdsk.obj : chkdsk.c ..\include\fat32def.h ..\include\portable.h 70 msg.obj : msg.c ..\include\fat32c.h 71 os2.obj : os2.c ..\include\fat32c.h ..\include\fat32def.h ..\include\portable.h 72 fat32.obj : fat32.c 63 73 64 74 -
branches/fat32-0.10/src/ufat32/os2.c
r101 r107 470 470 { 471 471 char str[128]; 472 (削除) (削除ここまで)int pos = 0;472 (追記) static (追記ここまで)int pos = 0; 473 473 //USHORT row, col; 474 474 //char chr = ' ';
Note:
See TracChangeset
for help on using the changeset viewer.