#DS	example qef application package
#: /*^ instal -d `dirsetup -f ^R` ^F
#:	SID	@(#)qegappl.ds	8.3 - 00/03/07
#F read.me
-This directory is provided as an example of how to set up a
-package that is to be included as a sub-project of a larger
-project.
-
-Significant files and directories:
-
-	qeffile		a qefdirs script to visit the directories
-	tree.vrs	set tree wide settings such as InclPath
-	appl		directory of application header files
-	lib		directory to build appl library
-	cmd		directory of appl commands
-	man		directory of appl documentation
#F appl/appl.h
-#ifndef	APPL_TYPES_H
-#define	APPL_TYPES_H
-
-extern int	rtn(void);
-
-#endif /* APPL_TYPES_H */
#F appl/qeffile
-set Suffixes	h
-
-Begin
-
-instfls -d _DestDir_/hdrs/appl @argv~x/h/
#F cmd/appl.c
-/* LIBS: -lappl
- */
-
-#include	<appl/appl.h>
-#include	<stdio.h>
-
-main()
-{
-	printf("Doesn't do much at all, but rtn()=\045d\134n", rtn());
-}
#F cmd/qeffile
-# Need to add ../lib to LibPath to get -lappl
-
-addpath LibPath ../lib
-
-Begin
-
-# Note that -v will embed version string in the binary
-
-program -v appl.c
-
-# Just in case we add any new files ...
-# Note that appl.c already processed by above so not done again.
-
-commands @argv
#F lib/qeffile
-# Note that InclPath need not set set as already done in ../tree.vrs
-
-Begin
-
-# Create appl library, add a version file
-
-library -v -n appl @argv
#F lib/rtn.c
-#include	<appl/appl.h>
-
-int
-rtn()
-{
-	return 6; /* may be this should be 42 */
-}
#F man/appl.1
-.TH APPL 1
-.SH NAME
-example \134- example application directory structure
-.SH SYNOPSIS
-\134fBappl\134fP
-.SH INTRODUCTION
-This is an example manual page.
-Like so many it says so little.
#F man/qeffile
-set Suffixes 1
-
-Begin
-
-# Install all the manual sections in the usual place
-
-cmds_man @argv
-
-# We could have used commands as that function recognizes *.1 files
#F qeffile
-# Another qefdirs qeffile -- see ../qeffile
-
-Begin	qefdirs
-
-appl		I
-lib		IL
-
-+	This line starts a new level
-
-cmd		IL	-lib
-man		m		# m == Man, but only if @NO_MAN not set
#F tree.vrs
-# This tree.vrs file applies this directory and all
-# its sub-directories
-
-suspend		# suspend processing until higher directories'
-		# qvrs files have been processed
-
-# Insert this directory at beginning of the include path
-
-addpath InclPath \100(paths @Dots)
-
-# \100(paths X) generates list of X across the @SrcPath
-# See x-qvrs Dots for description or @Dots
