Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Dec 2003 08:15:15 -0800 (PST)
From:      Chris Vance <cvance@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 43302 for review
Message-ID:  <200312021615.hB2GFFVS047663@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=43302

Change 43302 by cvance@cvance_osx_laptop on 2003/12/02 08:14:19

	Add 'clean' targets 

Affected files ...

.. //depot/projects/trustedbsd/sedarwin/sebsd_cmds/Makefile#2 edit
.. //depot/projects/trustedbsd/sedarwin/sebsd_cmds/loadpolicy/Makefile#3 edit
.. //depot/projects/trustedbsd/sedarwin/sebsd_cmds/newrole/Makefile#3 edit

Differences ...

==== //depot/projects/trustedbsd/sedarwin/sebsd_cmds/Makefile#2 (text+ko) ====

@@ -4,6 +4,11 @@
 	(cd loadpolicy ; make)
 	(cd newrole ; make)
 
+clean:
+	(cd checkpolicy ; make clean)
+	(cd loadpolicy ; make clean)
+	(cd newrole ; make clean)
+
 install:
 	(cd checkpolicy ; make install)
 	(cd loadpolicy ; make install)

==== //depot/projects/trustedbsd/sedarwin/sebsd_cmds/loadpolicy/Makefile#3 (text+ko) ====

@@ -9,4 +9,7 @@
 install:
 	install -m 755 -o root -g wheel sebsd_loadpolicy /usr/sbin
 
+clean:
+	rm -f $(OBJS) sebsd_loadpolicy
+
 CFLAGS += -I../../apsl/xnu/security/sebsd

==== //depot/projects/trustedbsd/sedarwin/sebsd_cmds/newrole/Makefile#3 (text+ko) ====

@@ -9,4 +9,7 @@
 install:
 	install -m 755 -o root -g wheel sebsd_newrole /usr/sbin
 
+clean:
+	rm -f $(OBJS) sebsd_newrole
+
 CFLAGS += -I../../apsl/xnu/security/sebsd



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200312021615.hB2GFFVS047663>