X-Git-Url: https://git.sthu.org/?p=sitarba.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=2365971fdb9544bd2015da54613ac8d9183ad856;hp=0000000000000000000000000000000000000000;hb=07fa9c2763775fe326e5aec08f8f4ee570072f5b;hpb=62a41f19c5f25566b02fc5973510e1a1e4baa8d6 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2365971 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +PREFIX=/usr +# Where the script binary should go +BINPATH = $(PREFIX)/bin +# Where the manpage should go +MANPATH = $(PREFIX)/share/man +CONFFILE = /etc/shbackup.conf + +###################################################################### + +all: + +install: all + install -m 0755 shbackup $(BINPATH)/shbackup + install -m 0644 shbackup.conf $(CONFFILE) + install -m 0644 shbackup.1 $(MANPATH)/man1/shbackup.1 +