-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
39 lines (29 loc) · 1.03 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
############################################################ IDENT(1)
#
# $Title: Makefile for installing nfsdtop on FreeBSD $
# $Copyright: 2020 Devin Teske. All rights reserved. $
# $FrauBSD: nfsdtop/Makefile 2020-05-23 19:12:14 -0700 freebsdfrau $
#
############################################################ CONFIGURATION
DESTDIR=
BINDIR= $(DESTDIR)/usr/bin
############################################################ PATHS
CP_F= cp -f
MKDIR_P= mkdir -p
RM_F= rm -f
############################################################ OBJECTS
PROG= nfsdtop
SRC= nfsdtop.freebsd
############################################################ TARGETS
all:
@printf "Options:\n"
@printf "\tmake install\tInstall $(PROG)\n"
@printf "\tmake uninstall\tUninstall $(PROG)\n"
install:
$(MKDIR_P) $(BINDIR)
$(CP_F) $(SRC) $(BINDIR)/$(PROG)
uninstall:
$(RM_F) $(BINDIR)/$(PROG)
################################################################################
# END
################################################################################