60
61 def all: $(SRCFILES)
62
63 install: all $(ROOTCONFIGFILES)
64
65 #
66 # The ROOTETC directory is made by ../../../Targetdirs
67 # through the rootdirs target in ../../../Makefile.
68 #
69 # etc/path_to_inst has permissions different from the other config files
70 #
71 $(ROOTETC)/$(PATH2INST):= FILEMODE=444
72
73 $(ROOTETC)/%: $(SRCDIR)/%
74 $(INS.file)
75
76 $(ROOTETCSEC)/%: $(SRCDIR)/%
77 $(INS.file)
78
79 $(SRCDIR)/priv_names: $(PRIVS_DEF) $(PRIVS_AWK)
80 $(NAWK) -f $(PRIVS_AWK) < $(PRIVS_DEF) -v pnamesfile=$@
81
82 clean clobber lint:
83
84 #
85 # No lints, so keep the clobber and clean targets reasonable.
86 #
87 CLEANLINTFILES = Nothing_to_remove
88 CLEANFILES = Nothing_to_remove
89 CLOBBERFILES = Nothing_to_remove
90
91 #
92 # Include common targets.
93 #
94 include $(UTSBASE)/sparc/Makefile.targ
|
60
61 def all: $(SRCFILES)
62
63 install: all $(ROOTCONFIGFILES)
64
65 #
66 # The ROOTETC directory is made by ../../../Targetdirs
67 # through the rootdirs target in ../../../Makefile.
68 #
69 # etc/path_to_inst has permissions different from the other config files
70 #
71 $(ROOTETC)/$(PATH2INST):= FILEMODE=444
72
73 $(ROOTETC)/%: $(SRCDIR)/%
74 $(INS.file)
75
76 $(ROOTETCSEC)/%: $(SRCDIR)/%
77 $(INS.file)
78
79 $(SRCDIR)/priv_names: $(PRIVS_DEF) $(PRIVS_AWK)
80 $(AWK) -f $(PRIVS_AWK) < $(PRIVS_DEF) -v pnamesfile=$@
81
82 clean clobber lint:
83
84 #
85 # No lints, so keep the clobber and clean targets reasonable.
86 #
87 CLEANLINTFILES = Nothing_to_remove
88 CLEANFILES = Nothing_to_remove
89 CLOBBERFILES = Nothing_to_remove
90
91 #
92 # Include common targets.
93 #
94 include $(UTSBASE)/sparc/Makefile.targ
|