[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / pta

Annotation of pta/Makefile, Revision 1.1

1.1     ! schwarze    1: # $Id$
        !             2: # Ingo Schwarze 2020.  Public domain.
        !             3:
        !             4: all:
        !             5:        @echo 'Nothing to do; set $$DESTDIR and try "make install".'
        !             6:
        !             7: install:
        !             8:        @if test -z "$(DESTDIR)"; then echo "DESTDIR is not set"; exit 1; fi
        !             9:        install -o root -g wheel -m 0755 -d $(DESTDIR)/bin
        !            10:        install -o root -g wheel -m 0755 -d $(DESTDIR)/man
        !            11:        install -o root -g wheel -m 0755 -d $(DESTDIR)/man/man1
        !            12:        install -o root -g wheel -m 0755 -d $(DESTDIR)/man/man5
        !            13:        install -o root -g wheel -m 0755 -d $(DESTDIR)/man/man7
        !            14:        install -o root -g wheel -m 0755 -d $(DESTDIR)/share
        !            15:        install -o root -g wheel -m 0755 -d $(DESTDIR)/share/examples
        !            16:        install -o root -g wheel -m 0755 -d $(DESTDIR)/share/examples/pta
        !            17:        install -o root -g bin -m 0555 pta.pl $(DESTDIR)/bin/pta
        !            18:        install -o root -g bin -m 0444 pta.1 $(DESTDIR)/man/man1/
        !            19:        install -o root -g bin -m 0444 pta-accounts.5 $(DESTDIR)/man/man5/
        !            20:        install -o root -g bin -m 0444 pta-journal.5 $(DESTDIR)/man/man5/
        !            21:        install -o root -g bin -m 0444 pta-glossary.7 $(DESTDIR)/man/man7/
        !            22:        install -o root -g wheel -m 0444 accounts.example.de \
        !            23:            $(DESTDIR)/share/examples/pta/
        !            24:
        !            25: .PHONY: all install

CVSweb