home *** CD-ROM | disk | FTP | other *** search
/ Computer Installation Guide - Dragon Clan Series / CD1.iso / MPEG / WFSMP11 / SDK / DOS / MSC60.MAK < prev    next >
Encoding:
Text File  |  1995-04-06  |  309 b   |  16 lines

  1. LIBS   = MOVIEC60.LIB
  2. # -AL for MSC 6.0
  3. CC     = cl -c -AL -Ox -G2 -W3
  4.  
  5. .c.obj:
  6.         $(CC) $*.c
  7.  
  8. goal:   mpeg.exe videocd.exe
  9.  
  10. mpeg.exe: $*.obj $(LIBS)
  11.         link /st:10240 $*.obj,$*.exe,nul.map,$(LIBS);
  12.  
  13. videocd.exe: $*.obj $(LIBS)
  14.         link /st:10240 $*.obj,$*.exe,nul.map,$(LIBS);
  15.  
  16.