home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource1
/
spheres
/
makefile
< prev
next >
Wrap
Makefile
|
1993-06-25
|
710b
|
32 lines
#
# ObjectWindows - (C) Copyright 1992 by Borland International
#
!if !$d(BCROOT)
BCROOT=C:\BORLANDC
!endif
!include "$(BCROOT)\owl\examples\makefile.inc"
spheres.scr: turboc.cfg tscrnsav.obj spheres.obj spheres.res
$(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) spheres tscrnsav,spheres.scr,,@&&!
$(OWLLIBS) $(STDLIBS) bwcc.lib
!,spheres.def
$(RC) -31 -K spheres.res spheres.scr
turboc.cfg: makefile $(BCROOT)\owl\examples\makefile.inc
echo -I$(INCLUDE) >turboc.cfg
clean:
del *.obj
del *.exe
del *.res
del *.dll
del *.lib
del *.map
del *.sym
del *.dsk
del *.scr
del turboc.cfg