xref: /minix3/usr.bin/make/unit-tests/unexport-env.mk (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc# $Id: unexport-env.mk,v 1.1 2014/08/21 13:44:52 apb Exp $
2*0a6a1f1dSLionel Sambuc
3*0a6a1f1dSLionel Sambuc# pick up a bunch of exported vars
4*0a6a1f1dSLionel Sambuc.include "export.mk"
5*0a6a1f1dSLionel Sambuc
6*0a6a1f1dSLionel Sambuc# an example of setting up a minimal environment.
7*0a6a1f1dSLionel SambucPATH = /bin:/usr/bin:/sbin:/usr/sbin
8*0a6a1f1dSLionel Sambuc
9*0a6a1f1dSLionel Sambuc# now clobber the environment to just PATH and UT_TEST
10*0a6a1f1dSLionel SambucUT_TEST = unexport-env
11*0a6a1f1dSLionel Sambuc
12*0a6a1f1dSLionel Sambuc# this removes everything
13*0a6a1f1dSLionel Sambuc.unexport-env
14*0a6a1f1dSLionel Sambuc.export PATH UT_TEST
15