Makefile (996B)
1 .PHONY: all 2 all: simulation.jl plot.jl 3 $(MAKE) -C mu_sigmac/ 4 $(MAKE) -C psd_width/ 5 $(MAKE) -C stiffness/ 6 $(MAKE) -C thickness/ 7 $(MAKE) -C width/ 8 $(MAKE) -C width_monodisperse/ 9 julia tau_plots.jl 10 11 .PHONY: all-plots 12 all-plots: 13 $(MAKE) -C mu_sigmac/ all-plots 14 $(MAKE) -C mu_sigmac/ mu_sigmac-survived_fraction.png 15 $(MAKE) -C psd_width/ all-plots 16 $(MAKE) -C psd_width/ psd_width-survived_fraction.png 17 $(MAKE) -C stiffness/ all-plots 18 $(MAKE) -C stiffness/ stiffness-survived_fraction.png 19 $(MAKE) -C thickness/ all-plots 20 $(MAKE) -C thickness/ thickness-survived_fraction.png 21 $(MAKE) -C width/ all-plots 22 $(MAKE) -C width/ width-survived_fraction.png 23 $(MAKE) -C width_monodisperse/ all-plots 24 $(MAKE) -C width_monodisperse/ width_monodisperse-survived_fraction.png 25 julia tau_plots.jl 26 27 .PHONY: clean 28 clean: 29 $(MAKE) -C mu_sigmac/ clean 30 $(MAKE) -C psd_width/ clean 31 $(MAKE) -C stiffness/ clean 32 $(MAKE) -C thickness/ clean 33 $(MAKE) -C width/ clean 34 $(MAKE) -C width_monodisperse/ clean