/*
 * Simple Imakefile to build a library
 */
XCOMM Simple Makefile to build a library

XCOMM List the source and object files
SRCS = src1.c src2.c
OBJS = src1.o src2.o

XCOMM Invoke rules to build the libraries
NormalLibraryObjectRule()
BuildNormalLibrary(fake,$(SRCS),$(OBJS))

XCOMM Invoke rules for installing the library and the lint library.
XCOMM Normally you'd use LOCALUSRLIBDIR and LOCALLINTLIBDIR, but we
XCOMM don't want to really install these anywhere.
InstallLibrary(fake,./play)
InstallLintLibrary(fake,./play)

XCOMM Invoke rule to depend sources
DependTarget()
