Annotation of papers/a_reflection_on_gender_roles/Makefile, revision 1.1

1.1     ! snw         1: #
        !             2: # $Id$
        !             3: #  Build file for A Reflection on Gender Roles
        !             4: #
        !             5: # Copyright (C) 2025 Serena Willis
        !             6: #
        !             7: #   $Log$
        !             8: #
        !             9: 
        !            10: outputs = a_reflection_on_gender_roles.ps a_reflection_on_gender_roles.txt a_reflection_on_gender_roles.pdf
        !            11: 
        !            12: all: $(outputs)
        !            13: 
        !            14: a_reflection_on_gender_roles.ps: a_reflection_on_gender_roles.ms
        !            15:        refer a_reflection_on_gender_roles.ms | tbl | groff -ms -Tps > a_reflection_on_gender_roles.ps
        !            16: 
        !            17: a_reflection_on_gender_roles.txt: a_reflection_on_gender_roles.ms
        !            18:        refer a_reflection_on_gender_roles.ms | tbl | groff -ms -Tascii > a_reflection_on_gender_roles.txt
        !            19: 
        !            20: a_reflection_on_gender_roles.pdf: a_reflection_on_gender_roles.ps
        !            21:        ps2pdf a_reflection_on_gender_roles.ps a_reflection_on_gender_roles.pdf
        !            22: 
        !            23: clean:
        !            24:        rm -f $(outputs)
        !            25: 
        !            26: .PHONY: all clean

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