little more info in pagefault exception handler.
[minix.git] / etc / Makefile
blob814fd0ae722ff950ebc421283be8463de5a38ad1
2 ETC=/etc/
3 USRETC=/usr/etc/
4 FILES1=fstab group hostname.file inet.conf motd.install mtab passwd profile \
5 protocols rc services termcap ttytab utmp rc.cd binary_sizes \
6 binary_sizes.big binary_sizes.xxl rc.rescue syslog.conf \
7 rc.daemons.dist rs.inet rs.single make.conf drivers.conf
8 FILES2=shadow
9 FILES3=daily dhcptags.conf rc
11 all::
13 clean::
15 install::
16 @echo "Installing /etc and /usr/etc.."
17 mkdir -p $(ETC)
18 @for f in $(FILES1); do if [ -f $(ETC)/$$f ]; then :; else cp $$f $(ETC)/$$f; chmod 755 $(ETC)/$$f; fi; done
19 @for f in $(FILES2); do if [ -f $(ETC)/$$f ]; then :; else cp $$f $(ETC)/$$f; chmod 600 $(ETC)/$$f; fi; done
20 @echo "Making hierarchy.."
21 sh mtree.sh mtree/minix.tree
22 @for f in $(FILES3); do if [ -f $(USRETC)/$$f ]; then :; else cp usr/$$f $(USRETC); chmod 755 $(USRETC)/$$f; fi; done
23 @echo "Making devices.."
24 p=`pwd` && cd /dev && sh $$p/../commands/scripts/MAKEDEV.sh null
25 p=`pwd` && cd /dev && sh $$p/../commands/scripts/MAKEDEV.sh std 2>/dev/null
26 install -o bin -g operator -m 755 crontab /usr/lib
27 @echo "Making user homedirs.."
28 for u in /usr/ast ~root; do cp ast/.[aepv]* $$u ; done
29 @echo "Installing fonts.."
30 install -m 644 -o bin -g operator fonts/*.fnt /usr/lib/fonts/
32 postinstall:
33 binsizes normal