diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-25 12:15:52 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-25 12:15:52 (EDT) |
commit | e20614706dcd3653d77d16ff54414764026a15b4 (patch) | |
tree | 4cfb725ad13a7b236f693ed26f4fd55bd51b0150 /build | |
parent | e557f00f2528bde5d75dfd8c6d83cc4afd86d82a (diff) |
build: Add "install" target commands.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,6 +1,16 @@ #!/usr/bin/make -f +branding_share = proteanos-branding.data/usr/share/branding + build: @: install: build + install -d -m 0755 $(branding_share)/fonts + install -d -m 0755 $(branding_share)/images + install -d -m 0755 $(branding_share)/www + install -d -m 0755 $(branding_share)/styles + install -m 0644 src/fonts/* $(branding_share)/fonts + install -m 0644 src/images/* $(branding_share)/images + install -m 0644 src/www/* $(branding_share)/www + install -m 0644 src/www/* $(branding_share)/styles |