source: trunk/debathena/debathena/dotfiles/Makefile @ 25644

Revision 25644, 2.2 KB checked in by jdreed, 12 years ago (diff)
In dotfiles: * Add /usr/lib/init/check-for-reboot to the logout aliases (Trac: #971). We add this here and not in xsession, because dotfiles can't/shouldn't depend on xsession.
RevLine 
[22517]1# $Id: Makefile,v 1.20 2006-07-25 23:14:55 ghudson Exp $
[8939]2
3SHELL=/bin/sh
[9651]4PROTOTYPE=/usr/prototype_user
[22913]5PROTOTMP=/usr/lib/prototype_tmpuser
6SYSTEM=/usr/lib/init
7ATHMANDIR=/usr/share/man
[24413]8PROTODESKTOP=${PROTOTYPE}/Desktop
[8939]9
10all:
11
12check:
13
14install:
[12279]15        mkdir -p ${DESTDIR}${PROTOTYPE}
16        mkdir -p ${DESTDIR}${PROTOTMP}
17        mkdir -p ${DESTDIR}${SYSTEM}
18        mkdir -p ${DESTDIR}${ATHMANDIR}/man1
19        mkdir -p ${DESTDIR}${ATHMANDIR}/man7
[24413]20        mkdir -p ${DESTDIR}${PROTODESKTOP}
[17853]21        install -c -m 0644 cshrc ${DESTDIR}${SYSTEM}
[8939]22        install -c -m 0644 dot.cshrc ${DESTDIR}${PROTOTYPE}/.cshrc
[9651]23        install -c -m 0644 dot.cshrc ${DESTDIR}${PROTOTMP}/.cshrc
[8939]24        install -c -m 0644 dot.login ${DESTDIR}${PROTOTYPE}/.login
[9651]25        install -c -m 0644 dot.login ${DESTDIR}${PROTOTMP}/.login
[8939]26        install -c -m 0644 dot.logout ${DESTDIR}${PROTOTYPE}/.logout
27        install -c -m 0644 dot.mh_profile ${DESTDIR}${PROTOTYPE}/.mh_profile
[13196]28        install -c -m 0644 dot.bash_login ${DESTDIR}${PROTOTYPE}/.bash_login
[16377]29        install -c -m 0644 dot.bash_login ${DESTDIR}${PROTOTMP}/.bash_login
[13196]30        install -c -m 0644 dot.bashrc ${DESTDIR}${PROTOTYPE}/.bashrc
[16377]31        install -c -m 0644 dot.bashrc ${DESTDIR}${PROTOTMP}/.bashrc
[22975]32        install -c -m 0644 dot.generation ${DESTDIR}${PROTOTYPE}/.generation
33        install -c -m 0644 dot.generation ${DESTDIR}${PROTOTMP}/.generation
[8939]34        install -c -m 0644 env_remove ${DESTDIR}${SYSTEM}
35        install -c -m 0644 env_setup ${DESTDIR}${SYSTEM}
[23782]36        install -c -m 0644 env_remove.bash ${DESTDIR}${SYSTEM}
37        install -c -m 0644 env_setup.bash ${DESTDIR}${SYSTEM}
[9568]38        install -c -m 0444 lockers.7 ${DESTDIR}${ATHMANDIR}/man7
[8939]39        install -c -m 0644 login ${DESTDIR}${SYSTEM}
[13196]40        install -c -m 0644 bashrc ${DESTDIR}${SYSTEM}
41        install -c -m 0644 bash_login ${DESTDIR}${SYSTEM}
[8939]42        install -c -m 0444 renew.1 ${DESTDIR}${ATHMANDIR}/man1
43        install -c -m 0644 temp.README ${DESTDIR}${PROTOTMP}/README
44        install -c -m 0644 temp.mh_profile ${DESTDIR}${PROTOTMP}/.mh_profile
45        install -c -m 0644 welcome ${DESTDIR}${PROTOTYPE}
[9651]46        install -c -m 0644 welcome ${DESTDIR}${PROTOTMP}
[24413]47        install -c -m 0755 welcome.desktop ${DESTDIR}${PROTODESKTOP}
48        install -c -m 0755 olh.desktop ${DESTDIR}${PROTODESKTOP}
49        install -c -m 0755 faq.desktop ${DESTDIR}${PROTODESKTOP}
[25644]50        install -c -m 0755 check-for-reboot ${DESTDIR}${SYSTEM}
[8939]51
52clean:
53
54distclean:
[19042]55
Note: See TracBrowser for help on using the repository browser.