
# $Id: edcxite,v 1.4 1994/11/23 15:48:55 svein Exp $

{
	if ( $1 == "XITE_HOME=" && NF == 1 ) {
		print "    " $1 home
		printed = 1
	}

	if ( $1 == "XITE_HOSTTYPE=" && NF == 1 ) {
		print "    " $1 hosttype
		printed = 1
	}

	if ( $1 == "XITE_INC_DEST=" && NF == 1 ) {
		print "    " $1 inc
		printed = 1
	}

	if ( $1 == "XITE_LIB_DEST=" && NF == 1 ) {
		print "    " $1 lib
		printed = 1
	}

	if ( $1 == "X_INC_DIR=" && NF == 1 ) {
		print "    " $1 xinc
		printed = 1
	}

	if ( $1 == "X_LIB_DIR=" && NF == 1 ) {
		print "    " $1 xlib
		printed = 1
	}

	if (! printed) print $0
	else printed = 0
}


