Changeset 1468 for trunk/dll


Ignore:
Timestamp:
Sep 21, 2009, 7:23:53 PM (16 years ago)
Author:
Steven Levine
Message:

Add some makefile notes
Avoid attempting to attach resources to fm3res.map
Correct some typos in file_id.diz and readme

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/makefile

    r1439 r1468  
    66
    77# 22 May 03 SHL Correct icon dependencies
    8 # 21 Nov 03 SHL Correct ipf dependents
    9 # 26 Jul 04 SHL Correct CFLAGSR
    10 # 23 May 05 SHL Drop saymsg
    11 # 24 May 05 SHL Add clean and cleanobj targets
    12 # 06 Jun 05 SHL Add warnings enable (WARN)
    13 # 24 Jul 05 SHL Rework resource kit support
    14 # 16 Apr 06 SHL Add lxlite target
    15 # 28 Jun 06 SHL Add more .h dependencies
    16 # 22 Jul 06 SHL Add more .h dependencies
    17 # 29 Jul 06 SHL Reorganize icons
    18 # 31 Jul 06 SHL Tweak dependencies
    19 # 16 Aug 06 SHL Drop 4os2-ism
    20 # 18 Aug 06 SHL Drop rc -x2 compression - not reliable
    21 # 01 Sep 06 SHL fm3.hlp: add missing dependency on ..\bitmaps
    22 # 01 Sep 06 SHL Adjust fm3str.str case
    23 # 30 Sep 06 GKY Add del of Help file to clean
    24 # 19 Oct 06 SHL Move all .hlp logic build to ipf\makefile too
    258# 12 May 07 SHL Drop obsolete macros
    269# 02 Jun 07 SHL Convert to OpenWatcom
     
    5235# 04 Feb 09 SHL Drop mkstr and fm3*.str now that we use STRINGTABLE
    5336# 12 Jul 09 GKY Allow FM/2 to load in high memory call exehdr /hi
     37# 30 Jul 09 SHL Avoid attempting to attach resources to fm3res.map
    5438
    5539# Environment: see makefile_pre.mk
    5640
    57 # DEBUG - not defined = release build, defined = debug build
    58 # WARNALL - add more warnings if defined
    59 # FORTIFY - build with FORTIFYed memory
    60 # USE_RC - build with rc.exe if defined, other build with wrc.exe
    61 # HIMEM - build with changes to allow loading in high memory
     41# DEBUG - debug build if defined, release build if not defined
     42# WARNALL - add more warnings if defined, standard warnings if not defined
     43# FORTIFY - enable FORTIFY heap checking if defined, omit FORITY support if not defined
     44# USE_RC - use rc.exe if defined, use wrc.exe if not defined
     45# HIMEM - load code and data in in high memory if defined, use low memory only if not defined
    6246
    6347BASE = fm3dll
     
    269253  $(LINK) @$(BASERES).lrf @$(BASERES).def
    270254  @echo.
    271   @echo Compiling resource: $@
    272   @echo.
    273   $(RC) $(RCFLAGS2) $(BASERES).res $@
     255  @echo Attaching resources to $(BASERES).dll
     256  @echo.
     257  $(RC) $(RCFLAGS2) $(BASERES).res $(BASERES).dll
    274258
    275259$(BASERES).lrf: $(__MAKEFILES__)
     
    297281!endif
    298282  @echo.
    299   @echo Compiling resource: $@
     283  @echo Ataching resources to $@
    300284  @echo.
    301285  $(RC) $(RCFLAGS2) $(BASERES).res $@
Note: See TracChangeset for help on using the changeset viewer.