home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / GDIDEMO.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-06-10  |  683 b   |  32 lines

  1. #
  2. # ObjectWindows - (C) Copyright 1992 by Borland International
  3. #
  4.  
  5. !if !$d(BCROOT)
  6. !include "..\bcroot.inc"
  7. !endif
  8.  
  9. !include "..\makefile.inc"
  10.  
  11. gdidemo.exe: turboc.cfg gdidemo.obj arty.obj bitblt.obj font.obj line.obj gdidemo.res
  12.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) gdidemo arty bitblt font line,gdidemo,, @&&!
  13. $(OWLLIBS) $(STDLIBS)
  14. !,$(OWLROOT)\lib\owl.def
  15.      $(RC) -30 -K gdidemo.res gdidemo.exe
  16.  
  17. gdidemo.res : gdidemo.rc backgrnd.bmp ship.bmp monoship.bmp
  18.  
  19. turboc.cfg: makefile ..\makefile.inc
  20.     echo -I$(INCLUDE) >turboc.cfg
  21.  
  22. clean:
  23.     del *.obj
  24.     del *.exe
  25.     del *.res
  26.     del *.dll
  27.     del *.lib
  28.     del *.map
  29.     del *.sym
  30.         del turboc.cfg
  31.  
  32.