home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / rcs / rcs56src / source / rcsfront / makefile < prev    next >
Encoding:
Makefile  |  1992-02-23  |  451 b   |  22 lines

  1. # Makefile for NMAKE
  2.  
  3. CC=       cl -nologo
  4. CFLAGS=   -AS -W1 -J -Zap -G2s -Ocegt -DOS2
  5. LDFLAGS=  -Lp -F 4000 -link /noe
  6. LIBS=      cio.def d:\ms\lib\setargv.obj
  7. STRIP=      bind -nologo
  8.  
  9. all:  cii.exe coo.exe
  10.  
  11. .c.obj:
  12.     $(CC) $(CFLAGS) -c $*.c
  13.  
  14. cii.exe: cii.obj
  15.     $(CC) $(CFLAGS) cii.obj -o $@ $(LIBS) $(LDFLAGS)
  16.     $(STRIP) $@
  17.  
  18. coo.exe: cio.obj pipe.obj
  19.     $(CC) $(CFLAGS) cio.obj pipe.obj -o $@ $(LIBS) $(LDFLAGS)
  20.     $(STRIP) $@ -n @cio.bad
  21.  
  22.