home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12555.ZIP / IFNOTWIN next >
Text File  |  1990-03-28  |  813b  |  23 lines

  1. #****************************************************************************
  2. #*                                                                          *
  3. #*                 Copyright (c) Microsoft Corp.  1987, 1990                *
  4. #*                           All Rights Reserved                            *
  5. #*                                                                          *
  6. #****************************************************************************
  7.  
  8. CFLAGS  = -c -W3 -G2
  9. LINK    = link
  10. SLIBS   = slibcep os2
  11.  
  12. ifnotwin.obj: ifnotwin.c
  13.     cl $(CFLAGS) $*.c
  14.  
  15. ifnotwin.exe: ifnotwin.obj
  16.     $(LINK) $* /NOD/NOI,,NUL,$(SLIBS),ifnotwin.def;
  17.  
  18. ifwin.obj: ifnotwin.c
  19.     cl -Fo$@ -DIFWIN $(CFLAGS) ifnotwin.c
  20.  
  21. ifwin.exe: ifwin.obj
  22.     $(LINK) $* /NOD/NOI,,NUL,$(SLIBS),ifwin.def;
  23.