###########################################################################
# Desc: Makefile for building and installing the examples
# Author: Andrew Howard
# Date: Apr 10 2002
# CVS: $Id: Makefile,v 1.1 2002/05/03 07:20:44 inspectorg Exp $
###########################################################################

include ../Makefile.opt


all: 
	cd simple && make all

dep:
	cd simple && make dep

clean:
	rm -f *~ *.o
	cd simple && make clean

install:
	$(MKDIR) -p $(INSTALL_EG)
	$(MKDIR) -p $(INSTALL_EG)/simple
	$(INSTALL) -m 644 simple/*.c simple/Makefile $(INSTALL_EG)/simple/
