Annotation of papers/freem_history/BSDmakefile, revision 1.1

1.1     ! snw         1: #
        !             2: # $Id: Makefile,v 1.3 2025/04/24 16:47:58 snw Exp $
        !             3: #  Build file for FreeM History
        !             4: #
        !             5: # Copyright (C) 2025 Serena Willis
        !             6: #
        !             7: #   $Log: Makefile,v $
        !             8: #   Revision 1.3  2025/04/24 16:47:58  snw
        !             9: #   Reorganize document, add MUMPS language overview
        !            10: #
        !            11: #   Revision 1.2  2025/04/22 17:54:09  snw
        !            12: #   Initial draft of FreeM History paper
        !            13: #
        !            14: #   Revision 1.1  2025/04/22 14:54:41  snw
        !            15: #   Add Makefile for FreeM History
        !            16: #
        !            17: #
        !            18: 
        !            19: outputs = freem_history.ps freem_history.txt freem_history.pdf #freem_history.html
        !            20: 
        !            21: all: $(outputs)
        !            22: 
        !            23: freem_history.ps: freem_history.ms
        !            24:        refer freem_history.ms | tbl | groff -ms -Tps > freem_history.ps
        !            25: 
        !            26: freem_history.txt: freem_history.ms
        !            27:        refer freem_history.ms | tbl | groff -ms -Tascii > freem_history.txt
        !            28: 
        !            29: freem_history.pdf: freem_history.ps
        !            30:        ps2pdf freem_history.ps freem_history.pdf
        !            31: 
        !            32: freem_history.html: freem_history.ms
        !            33:        refer freem_history.ms | tbl | groff -ms -Thtml > freem_history.html
        !            34: 
        !            35: clean:
        !            36:        rm -f $(outputs)
        !            37: 
        !            38: .PHONY: all clean

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>