diff options
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e5795a1 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +BINFILES=repoctl +CFGFILES=repoctl.conf +DATAFILES=functions + +sysconfdir=/etc +bindir=/usr/bin +sharedir=/usr/share +repoctldatadir=$(sharedir)/repoctl + +install: + install -d $(DESTDIR)$(bindir) $(DESTDIR)$(repoctldatadir) $(DESTDIR)$(sysconfdir) + install -m 755 $(BINFILES) $(DESTDIR)$(bindir) + install -m 644 $(CFGFILES) $(DESTDIR)$(sysconfdir) + install -m 644 $(DATAFILES) $(DESTDIR)$(repoctldatadir) + |