|
| 1 | +#----------------------------------------------------------------------------- |
| 2 | +# Project Makefile |
| 3 | +# Daniel J. Greenhoe |
| 4 | +#----------------------------------------------------------------------------- |
| 5 | +#-------------------------------------- |
| 6 | +# Paths |
| 7 | +#-------------------------------------- |
| 8 | +DIRPLOTS = ../plots |
| 9 | +DIRSTY = ../../common/sty |
| 10 | + |
| 11 | +#-------------------------------------- |
| 12 | +# Files |
| 13 | +#-------------------------------------- |
| 14 | +GRP_DIE = \ |
| 15 | + $(DIRPLOTS)/fdie_5eed_16002_auto.pdf \ |
| 16 | + $(DIRPLOTS)/fdie_5eed_16002_histo.pdf \ |
| 17 | + $(DIRPLOTS)/fdie_5eed_51_seq.pdf \ |
| 18 | + $(DIRPLOTS)/rdie_5eed_16002_auto.pdf \ |
| 19 | + $(DIRPLOTS)/rdie_5eed_16002_histo.pdf \ |
| 20 | + $(DIRPLOTS)/rdie_5eed_51_seq.pdf \ |
| 21 | + $(DIRPLOTS)/wdie_5eed_16002_auto.pdf \ |
| 22 | + $(DIRPLOTS)/wdie_5eed_16002_histo.pdf \ |
| 23 | + $(DIRPLOTS)/wdie_5eed_51_seq.pdf \ |
| 24 | + $(DIRPLOTS)/wrdie_5eed_16002_auto.pdf \ |
| 25 | + $(DIRPLOTS)/wrdie_5eed_16002_histo.pdf \ |
| 26 | + $(DIRPLOTS)/wrdie_5eed_51_seq.pdf |
| 27 | + |
| 28 | +GRP_DNA = \ |
| 29 | + $(DIRPLOTS)/dna_5eed_16000_auto.pdf \ |
| 30 | + $(DIRPLOTS)/dna_5eed_16000_histo.pdf \ |
| 31 | + $(DIRPLOTS)/dna_5eed_51_seq.pdf \ |
| 32 | + $(DIRPLOTS)/dna_papaya1446_51_seq.pdf \ |
| 33 | + $(DIRPLOTS)/dna_papaya1446_auto.pdf \ |
| 34 | + $(DIRPLOTS)/dna_papaya1446_histo.pdf \ |
| 35 | + $(DIRPLOTS)/dna_SARSCoV2_51_seq.pdf \ |
| 36 | + $(DIRPLOTS)/dna_SARSCoV2_auto.pdf \ |
| 37 | + $(DIRPLOTS)/dna_SARSCoV2_histo.pdf |
| 38 | + |
| 39 | +GRP_SPIN = \ |
| 40 | + $(DIRPLOTS)/spin_5eed_16002_auto.pdf \ |
| 41 | + $(DIRPLOTS)/spin_5eed_16002_histo.pdf \ |
| 42 | + $(DIRPLOTS)/spin_5eed_51_seq.pdf \ |
| 43 | + $(DIRPLOTS)/wspin_5eed_16002_auto.pdf \ |
| 44 | + $(DIRPLOTS)/wspin_5eed_16002_histo.pdf \ |
| 45 | + $(DIRPLOTS)/wspin_5eed_51_seq.pdf |
| 46 | + |
| 47 | +FILE_STY = \ |
| 48 | + $(DIRSTY)/wavelets.sty \ |
| 49 | + $(DIRSTY)/math.sty \ |
| 50 | + $(DIRSTY)/dan.sty \ |
| 51 | + $(DIRSTY)/defaults.sty \ |
| 52 | + $(DIRSTY)/fonts.sty \ |
| 53 | + $(DIRSTY)/packages.sty \ |
| 54 | + $(DIRSTY)/xsd.sty \ |
| 55 | + $(DIRSTY)/language.sty |
| 56 | + |
| 57 | +#-------------------------------------- |
| 58 | +# Programs |
| 59 | +#-------------------------------------- |
| 60 | +PRG_TYPESET = xelatex.exe |
| 61 | + |
| 62 | +#-------------------------------------- |
| 63 | +# master build rule |
| 64 | +#-------------------------------------- |
| 65 | +top: $(GRP_DIE) $(GRP_DNA) $(GRP_SPIN) |
| 66 | + @echo Done ... graphics pdfs are ready! |
| 67 | + |
| 68 | +#-------------------------------------- |
| 69 | +# implicit build control |
| 70 | +#-------------------------------------- |
| 71 | +{$(DIRPLOTS)}.tex.pdf: |
| 72 | + $(PRG_TYPESET) $(DIRPLOTS)/$&.tex |
| 73 | + |
| 74 | +#-------------------------------------- |
| 75 | +# commands |
| 76 | +#-------------------------------------- |
| 77 | +clean: |
| 78 | + del *.aux |
| 79 | + del *.log |
| 80 | + del *.out |
| 81 | + |
| 82 | +scrub: |
| 83 | + make clean |
| 84 | + del *.pdf |
| 85 | + |
0 commit comments