home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Zone / VRZONE.ISO / mac / PC / REND386 / JIREND / MAKEFILE < prev    next >
Text File  |  1993-04-11  |  2KB  |  55 lines

  1. INCDIR = ../include
  2. LIBDIR = ..
  3. CC = bcc
  4. CFLAGS = -ml -I$(INCDIR)
  5. LFLAGS = -ml
  6.  
  7. $(LIBDIR)\userint.lib: userint.obj joystick.obj cursors.obj \
  8.         gloveptr.obj mouseptr.obj keyboard.obj anim.obj world.obj \
  9.         hdmanip.obj render.obj colormap.obj
  10.    del $(LIBDIR)\userint.lib
  11.    tlib $(LIBDIR)\userint +userint +joystick +cursors +gloveptr \
  12.         +mouseptr +keyboard +anim +world +hdmanip +render +colormap
  13.  
  14. userint.obj: userint.c $(INCDIR)\userint.h $(INCDIR)\rend386.h \
  15.         $(INCDIR)\pointer.h $(INCDIR)\cursor.h
  16.  
  17. joystick.obj: joystick.c $(INCDIR)\userint.h
  18.  
  19. colormap.obj: colormap.c $(INCDIR)\rend386.h $(INCDIR)\f3dkitd.h
  20.  
  21. render.obj: render.c $(INCDIR)\rend386.h $(INCDIR)\f3dkitd.h \
  22.         $(INCDIR)\intmath.h $(INCDIR)\splits.h $(INCDIR)\userint.h
  23.  
  24. hdmanip.obj: hdmanip.c $(INCDIR)\rend386.h $(INCDIR)\userint.h \
  25.         $(INCDIR)\intmath.h $(INCDIR)\splits.h $(INCDIR)\segasupp.h \
  26.         $(INCDIR)\pointer.h $(INCDIR)\cursor.h
  27.  
  28. mouseptr.obj: mouseptr.c $(INCDIR)\rend386.h $(INCDIR)\pointer.h
  29.  
  30. gloveptr.obj: gloveptr.c $(INCDIR)\rend386.h $(INCDIR)\pointer.h \
  31.         $(INCDIR)\segasupp.h $(INCDIR)\intmath.h
  32.  
  33. cursors.obj: cursors.c $(INCDIR)/rend386.h  $(INCDIR)\userint.h \
  34.         $(INCDIR)/f3dkitd.h $(INCDIR)/intmath.h $(INCDIR)/pointer.h \
  35.         $(INCDIR)/cursor.h $(INCDIR)\segio.h $(INCDIR)\splits.h \
  36.         $(INCDIR)\plg.h
  37.  
  38. keyboard.obj: keyboard.c $(INCDIR)\rend386.h $(INCDIR)\userint.h \
  39.         $(INCDIR)\plg.h $(INCDIR)\pointer.h $(INCDIR)\splits.h \
  40.         $(INCDIR)\intmath.h $(INCDIR)\cursor.h $(INCDIR)\segio.h \
  41.         $(INCDIR)\eprint.h
  42.  
  43. world.obj: world.c $(INCDIR)\rend386.h $(INCDIR)\userint.h \
  44.         $(INCDIR)\tasks.h $(INCDIR)\plg.h $(INCDIR)\intmath.h \
  45.         $(INCDIR)\splits.h $(INCDIR)\pointer.h $(INCDIR)\cursor.h \
  46.         $(INCDIR)\segasupp.h $(INCDIR)\segio.h $(INCDIR)\eprint.h \
  47.         $(INCDIR)\gdc.h
  48.  
  49. anim.obj: anim.c $(INCDIR)\rend386.h $(INCDIR)\tasks.h $(INCDIR)\intmath.h
  50.  
  51. ######################################################
  52. clean: 
  53.         del *.obj
  54.  
  55.