Annotation of papers/freem_history/Makefile, revision 1.2

1.1       snw         1: #
1.2     ! snw         2: # $Id: Makefile,v 1.1 2025/04/22 14:54:41 snw Exp $
1.1       snw         3: #  Build file for FreeM History
                      4: #
                      5: # Copyright (C) 2025 Serena Willis
                      6: #
1.2     ! snw         7: #   $Log: Makefile,v $
        !             8: #   Revision 1.1  2025/04/22 14:54:41  snw
        !             9: #   Add Makefile for FreeM History
1.1       snw        10: #
1.2     ! snw        11: #
        !            12: 
        !            13: outputs = freem_history.ps freem_history.txt freem_history.pdf
        !            14: 
        !            15: all: $(outputs)
1.1       snw        16: 
                     17: freem_history.ps: freem_history.ms
                     18:        refer freem_history.ms | tbl | groff -ms -Tps > freem_history.ps
                     19: 
                     20: freem_history.txt: freem_history.ms
                     21:        refer freem_history.ms | tbl | groff -ms -Tascii > freem_history.txt
                     22: 
                     23: freem_history.pdf: freem_history.ps
                     24:        ps2pdf freem_history.ps freem_history.pdf
                     25: 
1.2     ! snw        26: clean:
        !            27:        rm -f $(outputs)
        !            28: 
        !            29: .PHONY: all clean

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