Latest version

This commit is contained in:
KusaReMKN
2022-11-29 12:12:52 +09:00
commit 1bc430c6a1
3 changed files with 1441 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
TARGET= runnowave.pdf
GROFF= groff
GROFFFLAGS= -dpaper=a4 -P-pa4 -ept -ma4 -ms -mpspic -mwww
PS2PDF= ps2pdf
PS2PDFFLAGS= -sPAPERSIZE=a4
RM= rm -f
SHELL= /bin/sh
all: $(TARGET)
.SUFFIXES:
.SUFFIXES: .ms .pdf
.ms.pdf:
$(GROFF) -Tps $(GROFFFLAGS) $< | $(PS2PDF) $(PS2PDFFLAGS) - $@
.PHONY: clean
clean:
$(RM) $(TARGET)
+1277
View File
File diff suppressed because it is too large Load Diff
+144
View File
File diff suppressed because it is too large Load Diff