-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (23 loc) · 819 Bytes
/
Makefile
File metadata and controls
27 lines (23 loc) · 819 Bytes
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
############################################################ IDENT(1)
#
# $Title: Makefile for installing nsadmin on non-GNU systems $
# $Copyright: 2019 Devin Teske. All rights reserved. $
# $FrauBSD: nsadmin/Makefile 2019-11-01 14:55:33 -0700 freebsdfrau $
#
############################################################ CONFIGURATION
DESTDIR=
TARGETS= all \
install \
install-admin \
install-axfr \
install-next \
uninstall \
uninstall-admin \
uninstall-axfr \
uninstall-next
############################################################ TARGETS
$(TARGETS):
$(MAKE) -f GNUmakefile CONFDIR=$(DESTDIR)/usr/local/etc $(MFLAGS) $(@)
################################################################################
# END
################################################################################