diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..767f5f3 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,23 @@ | |||
1 | PACKAGE=samizdat-rhizome | ||
2 | prefix=/usr/local | ||
3 | exec_prefix=${prefix} | ||
4 | bindir=${exec_prefix}/bin | ||
5 | libdir=${exec_prefix}/lib | ||
6 | includedir=${prefix}/include | ||
7 | datarootdir=${prefix}/share | ||
8 | datadir=${datarootdir} | ||
9 | mandir=${datarootdir}/man | ||
10 | infodir=${datarootdir}/info | ||
11 | docdir=${datarootdir}/doc/${PACKAGE} | ||
12 | sysconfdir=$(prefix)/etc | ||
13 | libexecdir=$(exec_prefix)/libexec | ||
14 | |||
15 | |||
16 | bin_programs=xorriso-usb.sh btrfs-functions.sh btrfs-receive-root.sh btrfs-send-root.sh var.sh | ||
17 | data_files= | ||
18 | libexec_programs=grub-efi.sh keygen.sh initrd.sh | ||
19 | |||
20 | install: | ||
21 | install ${bin_programs} ${bindir} | ||
22 | install ${libexec_programs} ${libexecdir} | ||
23 | install ${data_files} ${datadir}/${PACKAGE} | ||