home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 11screen / dspytype.mk < prev    next >
Encoding:
Text File  |  1988-08-11  |  503 b   |  18 lines

  1. # makefile for the DSPYTYPE demo program
  2.  
  3. LINC = c:\include\local
  4. LLIB = c:\lib\local
  5. LIBS = $(LLIB)\$(MODEL)bios.lib $(LLIB)\$(MODEL)util.lib 
  6.  
  7. # --- memory model information ---
  8. # edit the MODEL line to choose the desired memory model
  9. # [C=compact, L=large (and huge), M=medium, S=small) 
  10. MODEL = S    # small model
  11.  
  12. # --- compile source ---
  13. dspytype.obj:    dspytype.c $(LINC)\bioslib.h
  14.  
  15. # --- create the DSPYTYPE program ---
  16. dspytype.exe:    dspytype.obj $(LIBS)
  17.     link $*, $*, nul, $(LIBS);
  18.