Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. # Makefile for SWMM5
  2.  
  3. objs = swmm5.o climate.o controls.o culvert.o datetime.o dwflow.o dynwave.o error.o \
  4. exfil.o findroot.o flowrout.o forcmain.o gage.o gwater.o hash.o hotstart.o iface.o \
  5. infil.o inflow.o input.o inputrpt.o keywords.o kinwave.o landuse.o lid.o \
  6. lidproc.o link.o massbal.o mathexpr.o mempool.o node.o odesolve.o output.o \
  7. project.o qualrout.o rain.o rdii.o report.o roadway.o routing.o runoff.o shape.o snow.o \
  8. stats.o statsrpt.o subcatch.o surfqual.o table.o toposort.o transect.o treatmnt.o xsect.o
  9.  
  10.  
  11. swmm5 : $(objs)
  12. cc -o libswmm5.so $(objs) -fopenmp -lm -lpthread -shared
  13.  
  14. swmm5.o : consts.h macros.h enums.h error.h datetime.h objects.h funcs.h text.h globals.h swmm5.h
  15. climate.o : headers.h
  16. controls.o : headers.h
  17. culvert.o : headers.h
  18. datetime.o : datetime.h
  19. dwflow.o : headers.h
  20. dynwave.o : headers.h
  21. error.o : error.h
  22. exfil.o : headers.h infil.h exfil.h
  23. findroot.o : findroot.h
  24. flowrout.o : headers.h
  25. forcmain.o : headers.h
  26. gage.o : headers.h
  27. gwater.o : headers.h odesolve.h
  28. hash.o : hash.h
  29. hotstart : headers.h
  30. iface.o : headers.h
  31. infil.o : headers.h infil.h
  32. inflow.o : headers.h
  33. input.o : headers.h lid.h
  34. inputrpt.o : headers.h lid.h
  35. keywords.o : text.h
  36. kinwave.o : headers.h findroot.h
  37. landuse.o : headers.h
  38. lid.o : headers.h infil.h lid.h
  39. lidproc.o : headers.h lid.h
  40. link.o : headers.h
  41. massbal.o : headers.h
  42. mathexpr.o : mathexpr.h
  43. mempool.o : mempool.h
  44. node.o : headers.h findroot.h
  45. odesolve.o : odesolve.h
  46. output.o : headers.h
  47. project.o : headers.h hash.h lid.h mempool.h
  48. qualrout.o : headers.h
  49. rain.o : headers.h
  50. rdii.o : headers.h
  51. report.o : headers.h
  52. roadway.o : headers.h
  53. routing.o : headers.h
  54. runoff.o : headers.h odesolve.h
  55. shape.o : headers.h
  56. snow.o : headers.h
  57. stats.o : headers.h
  58. statsrpt.o : headers.h lid.h
  59. subcatch.o : headers.h lid.h odesolve.h
  60. surfqual.o : headers.h lid.h
  61. table.o : headers.h
  62. toposort.o : headers.h
  63. transect.o : headers.h
  64. treatmnt.o : headers.h
  65. xsect.o : headers.h findroot.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement