2001-07-31 04:42:38 +00:00
|
|
|
|
2001-08-02 01:35:05 +00:00
|
|
|
all: install
|
2001-07-31 04:42:38 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
install -d /usr/bin
|
2001-07-31 05:20:26 +00:00
|
|
|
cp -fa gbootroot /usr/bin/gbootroot
|
|
|
|
cp -fa yard_chrooted_tests /usr/bin/yard_chrooted_tests
|
2001-08-12 21:19:10 +00:00
|
|
|
cp -fa yard/scripts/make_debian /usr/bin/make_debian
|
2001-07-31 05:20:26 +00:00
|
|
|
install -d /usr/share/perl5/BootRoot
|
|
|
|
cp -fa BootRoot/*.pm /usr/share/perl5/BootRoot
|
2001-08-01 06:36:18 +00:00
|
|
|
install -d /usr/share/gbootroot/yard/Replacements
|
2001-08-20 20:03:36 +00:00
|
|
|
mknod yard/replacements/dev/ubd0 b 98 0
|
2001-08-01 06:36:18 +00:00
|
|
|
cp -fa yard/replacements/[!CVS]* /usr/share/gbootroot/yard/Replacements
|
2001-08-20 20:03:36 +00:00
|
|
|
rm yard/replacements/dev/ubd0
|
2001-07-31 04:42:38 +00:00
|
|
|
install -d /usr/share/gbootroot/yard/templates
|
|
|
|
chmod 444 yard/templates/*.yard
|
|
|
|
cp -fa yard/templates/*.yard /usr/share/gbootroot/yard/templates
|
|
|
|
cp -fa user-mode-linux/usr/bin/uml_* /usr/bin
|
|
|
|
cp -fa user-mode-linux/usr/bin/linux /usr/bin/linux
|
2001-07-31 05:32:50 +00:00
|
|
|
install -d /etc/gbootroot
|
|
|
|
cp -fa gbootrootrc /etc/gbootroot/gbootrootrc
|
2001-09-29 06:39:29 +00:00
|
|
|
install -d /usr/X11R6/include/X11/pixmaps
|
|
|
|
cp -fa gbootroot.xpm /usr/X11R6/include/X11/pixmaps/gbootroot.xp
|
|
|
|
m
|
2001-07-31 05:32:50 +00:00
|
|
|
|
|
|
|
remove:
|
2001-08-02 01:35:05 +00:00
|
|
|
rm /usr/bin/gbootroot
|
|
|
|
rm /usr/bin/yard_chrooted_tests
|
2001-08-12 21:19:10 +00:00
|
|
|
rm /usr/bin/make_debian
|
2001-08-02 01:35:05 +00:00
|
|
|
rm /usr/share/perl5/BootRoot/*
|
|
|
|
rmdir /usr/share/perl5/BootRoot
|
|
|
|
rm -rf /usr/share/gbootroot
|
|
|
|
rm /usr/bin/uml_*
|
|
|
|
rm /usr/bin/linux
|
|
|
|
rm /etc/gbootroot/gbootrootrc
|
|
|
|
rmdir /etc/gbootroot
|
2001-07-31 05:32:50 +00:00
|
|
|
|
2001-07-31 04:42:38 +00:00
|
|
|
|