home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / SGROUP2.ZIP / MAKEFILE next >
Text File  |  1991-01-08  |  518b  |  20 lines

  1. #OpusMake-compatible makefile.  It should run under Microsludge make with only
  2. #minor, if any, mods.
  3.  
  4. all: sgroup.exe
  5.  
  6. #----------------------------------------------------------
  7. PM_COMPILE       = cl -c -Alfw -W3 -G2sw -Lp -DLINT_ARGS $<
  8.  
  9. .c.obj:
  10.   $(PM_COMPILE)
  11. #----------------------------------------------------------
  12.  
  13. sgroup_objs = sgroup.obj 
  14.  
  15. sgroup_libs = LLIBCMT os2
  16.             
  17. sgroup.exe  : $(sgroup_objs)
  18.   link $(sgroup_objs), /align:16, NUL, /nod /st:8192 $(sgroup_libs), sgroup
  19.   
  20.