#DS	qef tutorial set # 1
#:	SID	@(#)qeftut1.ds	8.2 - 00/02/24
#F README	-m644
-cat qeffile
-	note Begin line ``qsg -M'' -- the script generator
-	``commands @argv'' converted by qsg into the ``make'' script
-qef -v
-	qvrs -p ...	create environment
-	sls -Ls ... 	create source database
-	New: ...	output by sls
-	qsg -M		produces script
-	incls -MUS	produce depencency list
-	mimk ...	the back end
-	Warning...	no history this time
-	+cc ...		the actions
-	Note Header and trailer lines
-ls
-	incls._		incls cache
-	qmkhist._	qmk/mimk history file
-	srclist._	sls output file
-tail qmkhist._
-	note reasons for hello being built
-qef -LDEBUGGING
-	hello rebuilt
-qef
-	hello rebuilt
-tail qmkhist._
-	note rational for rebuilt hello
-qef hello.s
-	can ask for a variety of products including the dot s file
-incls hello.c
-	outputs diagram of dependencies
-incls -l hello.c
-	slightly different listing
-incls -m hello.c
-	make format
-cp hello.c steve.c
-	create a new program
-qef
-	note ``New steve.c''
-	note steve now built
-qef Install
-	instal fails as _DestDir_ note set
-	need configuration information
-	will be introduced in ../tut2
-qef -Pqvrs
-	see qef -x for more flags
-	-Pqvrs outputs current qvrs database
-qvrs -f
-	list qvrs files ... just two at this time
-qef -Pscript
-	outputs unprocessed script
-qef RemoveObjs
-	remove temporaries
-rm *._ steve.c
-	final cleanup
-
-Move on to Tutorial 2.
#F hello.c	-m644
-#include	<stdio.h>
-
-main()
-{
-	printf("Hello world\134n");
-	exit(0);
-}
#F qeffile	-m644
-# Section 1: qvrs settings
-
-set Project Tutorial1
-
-# Additional qvrs settings can go here
-
-# End Section 1
-
-Begin	qsg -M
-
-# Section 2: script to run
-
-commands @argv
-
-# Additional scripts to run
-
-# End Section 2
