diff options
Diffstat (limited to 'usr/src/cmd/modload/Makefile')
-rw-r--r-- | usr/src/cmd/modload/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/usr/src/cmd/modload/Makefile b/usr/src/cmd/modload/Makefile index c186767c6a..7e258fa01a 100644 --- a/usr/src/cmd/modload/Makefile +++ b/usr/src/cmd/modload/Makefile @@ -21,9 +21,7 @@ # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# cmd/modload/Makefile -# -# makefile for loadable module utilities +# Copyright 2020 OmniOS Community Edition (OmniOSce) Association. DRVPROG = add_drv rem_drv update_drv MODPROG = modinfo modunload modload @@ -36,19 +34,18 @@ XPRIV = $(ETCSEC)/extra_privs $(XPRIV) := FILEMODE = 644 -SUBDIRS += $(MACH64) +SUBDIRS += $(MACH64) all := TARGET = all install := TARGET = install clean := TARGET = clean clobber := TARGET = clobber -lint := TARGET = lint .KEEP_STATE: all: $(SUBDIRS) -clean clobber lint: $(SUBDIRS) +clean clobber: $(SUBDIRS) install: $(SUBDIRS) $(XPRIV) |