Latest version

This commit is contained in:
KusaReMKN 2022-12-11 16:45:36 +09:00
commit f2192bad05
No known key found for this signature in database
GPG Key ID: F29DADED43FB2713
2 changed files with 135 additions and 0 deletions

115
100ampere.ms Normal file

File diff suppressed because it is too large Load Diff

20
Makefile Normal file
View File

@ -0,0 +1,20 @@
TARGET= 100ampere.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)