home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / andistkt.zip / MAKEFILE < prev    next >
Text File  |  1995-04-19  |  778b  |  27 lines

  1.  
  2. MAKEFILE  = makefile
  3. LINKFILE  = andismac.lnk
  4. DEFFILE   = andismac.def
  5. OPTIONS   = /c /G2s /Asfw /Zp /Fc /W3
  6.  
  7. all: andismac.os2 ads.msg
  8.  
  9. andismac.os2: macasm.obj macinit.obj macndis.obj macandis.obj {$(DPATH)}$(LINKFILE) {$(DPATH)}$(DEFFILE) {$(DPATH)}$(MAKEFILE)
  10.    link @$(LINKFILE)
  11.  
  12. macasm.obj: macasm.asm {$(DPATH)}$(MAKEFILE)
  13.    masm macasm,,macasm;
  14.  
  15. macinit.obj: macinit.c macdef.h macproto.h andis.h ndis.h typedef.h {$(DPATH)}$(MAKEFILE)
  16.    cl $(OPTIONS) macinit.c
  17.  
  18. macndis.obj: macndis.c macdef.h macproto.h ndis.h typedef.h {$(DPATH)}$(MAKEFILE)
  19.    cl $(OPTIONS) macndis.c
  20.  
  21. macandis.obj: macandis.c macdef.h macproto.h andis.h ndis.h typedef.h {$(DPATH)}$(MAKEFILE)
  22.    cl $(OPTIONS) macandis.c
  23.  
  24. ads.msg : ads.txt
  25.    mkmsgf ads.txt ads.msg
  26.  
  27.