home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / APPTYPE.ZIP / MSC / makefile.msc < prev    next >
Makefile  |  1993-03-24  |  629b  |  28 lines

  1. # makefile for apptype, a program to determine the type of executable.
  2. # Environment: OS/2 and MSC 6.00A using dmake 3.8.
  3. #
  4. # Files:
  5. #  apptype.def   linker definition file
  6. #  apptype.exe   OS/2 1.x--2.x executable
  7. #  fapptyp.h     defines from os2emx.h
  8. #  makefile.msc  Microsoft C 6.00A makefile
  9. #
  10. # Darrel Hankerson hankedr@mail.auburn.edu or hank@ducvax.auburn.edu
  11. # 24 March 1993
  12.  
  13. DEFS = -DMSC
  14.  
  15. CC = cl
  16. CFLAGS = $(DEFS)
  17.  
  18. LINK = cl
  19. LFLAGS = -Lp
  20. LFLAGS_TAIL = setargv.obj -link /NOE
  21.  
  22. .c.obj :
  23.     $(CC) -c $(CFLAGS) $<
  24.  
  25. apptype.exe : apptype.obj apptype.def
  26.     $(LINK) -o $@ $(LFLAGS) $< $(LFLAGS_TAIL)
  27.  
  28.