home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / biology / gsrc208a.zip / MAKEFILE < prev    next >
Text File  |  1993-07-16  |  2KB  |  52 lines

  1. # makefile for GEPASI - Zortech C
  2.  
  3. CFLAGS= -DMSDOS -D_ZTC -DMEM_DEBUG -mx
  4.  
  5. .c.obj:
  6.     ztc -c $(CFLAGS) $*
  7.  
  8. OBJECTS = gepmain.obj getall.obj globvar.obj metconan.obj metcvars.obj \
  9. newton.obj pmu.obj r250.obj datab.obj daxpy.obj ddot.obj dgefa.obj \
  10. dgesl.obj dscal.obj idamax.obj lsoda.obj kinetics.obj kinetic2.obj matrix.obj \
  11. rates.obj dynamic.obj gepout.obj gauss.obj gaussvar.obj mem.obj
  12.  
  13. gepasizt: $(OBJECTS)
  14.     ztc $(OBJECTS) $(CFLAGS_)
  15.  
  16. clean:
  17.     rm *.obj
  18.  
  19. gepmain.obj:      gepmain.c pmu.h globals.h globvar.h except.c r250.h \
  20. matrix.h kinetics.h rates.h gauss.h newton.h metconan.h lsoda.h dynamic.h \
  21. datab.h getall.h gepout.h
  22. getall.obj:       getall.c globals.h globvar.h datab.h newton.h strtbl.h \
  23. gauss.h kinetics.h pmu.h
  24. gepout.obj:       gepout.c globals.h globvar.h datab.h newton.h metconan.h \
  25. lsoda.h pmu.h
  26. datab.obj:        datab.c globals.h globvar.h lsoda.h strtbl.h
  27. globvar.obj:      globvar.c globals.h
  28. metcvars.obj:     metcvars.c globals.h
  29. gaussvar.obj:     gaussvar.c globals.h
  30. matrix.obj:       matrix.c globals.h globvar.h
  31. pmu.obj:          pmu.c
  32. r250.obj:         r250.c r250.h
  33. daxpy.obj:        daxpy.c
  34. ddot.obj:         ddot.c
  35. dgefa.obj:        dgefa.c
  36. dgesl.obj:        dgesl.c
  37. dscal.obj:        dscal.c
  38. idamax.obj:       idamax.c
  39. lsoda.obj:        lsoda.c
  40. metconan.obj:     metconan.c globals.h globvar.h matrix.h datab.h
  41. kinetics.obj:     kinetics.c globals.h globvar.h datab.h
  42. kinetic2.obj:     kinetic2.c globals.h globvar.h datab.h
  43. rates.obj:        rates.c globals.h globvar.h datab.h
  44. dynamic.obj:      dynamic.c globals.h lsoda.h globvar.h rates.h datab.h pmu.h
  45. gauss.obj:        gauss.c globals.h globvar.h
  46. newton.obj:       newton.c globals.h globvar.h matrix.h rates.h datab.h
  47. mem.obj:      mem.c mem.h
  48.  
  49.  
  50. #$(FILE) : file.h file.c
  51. #        ztc -c $(CFLAGS) -DA$* file -o$*.obj
  52.