index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2007-10-14 11:37:59 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-14 11:37:59 -0500 |
commit | e686cf5dcf1c738a94829ccfd71b0d4fdb9db24d (patch) | |
tree | a493d95cd4105ffe975b642ba8b9f960b2a8313d /Makefile | |
parent | eb3e9b28da517427bf6789d70401bb7ce0bb17e9 (diff) |
-rw-r--r-- | Makefile | 16 |
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5637adf --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +all: + +install: + # install to sbin since script only usable by root + mkdir -p $(DESTDIR)/usr/sbin + install -m 755 mkarchiso $(DESTDIR)/usr/sbin + # testiso can be used by anyone + mkdir -p $(DESTDIR)/usr/bin + install -m 755 testiso $(DESTDIR)/usr/bin + # hooks/install are needed by mkinitcpio + mkdir -p $(DESTDIR)/lib/initcpio/{hooks,install} + install -m 644 hooks/{archiso,boot-cd,boot-usb} $(DESTDIR)/lib/initcpio/hooks/ + install -m 644 install/{archiso,boot-cd,boot-usb} $(DESTDIR)/lib/initcpio/install/ + # install default config in a sane location + mkdir -p $(DESTDIR)/usr/share/archiso + cp -R default-config $(DESTDIR)/usr/share/archiso/ |