Changeset 27


Ignore:
Timestamp:
Sep 24, 2010, 5:50:44 PM (15 years ago)
Author:
markus
Message:

added bldlevel signature creation; set ignore patterns

Location:
trunk
Files:
3 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      *.add
      *.obj
      *.cod
      *.lst
      *.i
      *.mbr
  • trunk/src

    • Property svn:ignore set to
      *.add
      *.obj
      *.cod
      *.lst
      *.i
      *.mbr
  • trunk/src/include

    • Property svn:ignore set to
      *.add
      *.obj
      *.cod
      *.lst
      *.i
      *.mbr
  • trunk/src/os2ahci

    • Property svn:ignore set to
      *.add
      *.obj
      *.cod
      *.lst
      *.i
      *.mbr
  • trunk/src/os2ahci/Makefile

    r26 r27  
    2222###############################################################################
    2323# Tool Chain
     24#
    2425
    2526AS         = $(DDK)\tools\alp.exe
    2627CC         = cl
    27 LD         = link
     28LD         = $(DDK)\base\tools\link.exe
     29MAPSYM     = $(DDK)\base\tools\mapsym.exe
     30BLDLEVEL   = ..\..\tools\bldlvl.cmd
    2831
    2932AFLAGS     = -Mb
     
    6972           ctxhook.obj
    7073
    71 INCS     = os2ahci.h ahci.h
     74INCS     = os2ahci.h ahci.h version.h
    7275
    7376
     
    7679clean:
    7780        rm -f $(OBJS) $(TARGET)
     81
    7882
    7983###############################################################################
     
    106110
    107111$(TARGET): $(OBJS) os2ahci.def Makefile
     112        $(BLDLEVEL) os2ahci.def version.h
    108113        $(LD) $(LFLAGS) $(OBJS),$(TARGET),$*.map,$(LIB_DIRS) $(LIBS),$*.def
    109         mapsym os2ahci
     114        $(MAPSYM) os2ahci
    110115
    111116
  • trunk/src/os2ahci/os2ahci.def

    r13 r27  
    11library os2ahci
    2 description 'OS2 AHCI Driver'
     2Description '$@#thi.guten (www.thiguten.de):1.00.20100924#@OS/2 AHCI Adapter Device Driver'
    33protmode
    44
     
    1616  _z_text       CLASS 'CODE' IOPL
    1717
    18 
  • trunk/src/os2ahci/os2ahci.h

    r26 r27  
    5858
    5959#include "ahci.h"
     60#include "version.h"
    6061
    6162/* -------------------------- macros and constants ------------------------- */
    6263
    63 #define VERSION            100       /* driver version (2 implied decimals) */
    6464#define MAX_AD               8       /* maximum number of adapters */
    6565
Note: See TracChangeset for help on using the changeset viewer.