blob: abaf022f6f2f0edc04d762ed62f94284819cb31d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# mbuto: Minimal Builder Using Terse Options
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Copyright (c) 2022 Red Hat GmbH
# Author: Stefano Brivio <sbrivio@redhat.com>
all:
prefix ?= /usr/local
install: mbuto
mkdir -p $(DESTDIR)$(prefix)/bin $(DESTDIR)$(prefix)/share/man/man1
cp -d mbuto $(DESTDIR)$(prefix)/bin
cp -d mbuto.1 $(DESTDIR)$(prefix)/share/man/man1
uninstall:
-${RM} $(DESTDIR)$(prefix)/bin/mbuto
-${RM} $(DESTDIR)$(prefix)/share/man/man1/mbuto.1
|