home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 455.lha / WinMan_v1.0 / makefile < prev    next >
Makefile  |  1990-12-10  |  268b  |  21 lines

  1. #
  2. # MakeFile for WinMan1.0
  3. #
  4. cf =
  5. lf = NODEBUG
  6. #
  7. # The real make stuff
  8. #
  9. CFLAGS = -v -cms $(cf)
  10.  
  11. OBJS = WinMan.o
  12.  
  13. .c.o:
  14.     lc $(CFLAGS) $*
  15.  
  16. WhatIs: $(OBJS) Arg.o
  17.     blink from Arg.o+$(OBJS) to WinMan lib lib:lc.lib $(lf)
  18.  
  19. Arg.o: Arg.asm
  20.     asm -iINCLUDEASM: -oArg.o Arg.asm
  21.