41 lines
770 B
Makefile
Executable File
41 lines
770 B
Makefile
Executable File
# @(#)Makefile 1.4 93/04/16 SMI
|
|
#
|
|
# Copyright (c) 1993 by Sun Microsystems, Inc.
|
|
#
|
|
# cmd/audit_warn/Makefile
|
|
#
|
|
|
|
PROG = audit_warn
|
|
SRCS = audit_warn.sh
|
|
|
|
include ../Makefile.cmd
|
|
|
|
ETCSECURITYFILES = audit_warn
|
|
ROOTETCSECURITY = $(ROOT)/etc/security
|
|
$(ROOTETCSECURITY) := DIRMODE = 0755
|
|
$(ROOTETCSECURITY) := OWNER = root
|
|
$(ROOTETCSECURITY) := GROUP = sys
|
|
ROOTETCSECURITYFILES = $(ETCSECURITYFILES:%=$(ROOTETCSECURITY)/%)
|
|
$(ROOTETCSECURITYFILES) := FILEMODE = 0744
|
|
$(ROOTETCSECURITYFILES) := OWNER = root
|
|
$(ROOTETCSECURITYFILES) := GROUP = sys
|
|
|
|
.KEEP_STATE:
|
|
|
|
all: $(PROG)
|
|
|
|
install: all $(ROOTETCSECURITY) $(ROOTETCSECURITYFILES)
|
|
|
|
$(ROOTETCSECURITY):
|
|
$(INS.dir)
|
|
|
|
$(ROOTETCSECURITY)/%:%
|
|
$(INS.file)
|
|
|
|
clean:
|
|
$(RM) -f $(PROG)
|
|
|
|
clobber: clean
|
|
|
|
include ../Makefile.targ
|