version 1.1, 2025/04/22 14:54:41
|
version 1.2, 2025/04/22 17:54:09
|
Line 5
|
Line 5
|
# Copyright (C) 2025 Serena Willis |
# Copyright (C) 2025 Serena Willis |
# |
# |
# $Log$ |
# $Log$ |
|
# Revision 1.2 2025/04/22 17:54:09 snw |
|
# Initial draft of FreeM History paper |
|
# |
# Revision 1.1 2025/04/22 14:54:41 snw |
# Revision 1.1 2025/04/22 14:54:41 snw |
# Add Makefile for FreeM History |
# Add Makefile for FreeM History |
# |
# |
# |
# |
all: freem_history.ps freem_history.txt freem_history.pdf |
|
|
outputs = freem_history.ps freem_history.txt freem_history.pdf |
|
|
|
all: $(outputs) |
|
|
freem_history.ps: freem_history.ms |
freem_history.ps: freem_history.ms |
refer freem_history.ms | tbl | groff -ms -Tps > freem_history.ps |
refer freem_history.ms | tbl | groff -ms -Tps > freem_history.ps |
Line 20 freem_history.txt: freem_history.ms
|
Line 26 freem_history.txt: freem_history.ms
|
freem_history.pdf: freem_history.ps |
freem_history.pdf: freem_history.ps |
ps2pdf freem_history.ps freem_history.pdf |
ps2pdf freem_history.ps freem_history.pdf |
|
|
.PHONY: all |
clean: |
|
rm -f $(outputs) |
|
|
|
.PHONY: all clean |