/* Copyright (c) 1999, Gary Yihsiang Hsiao. All Rights Reserved. bugs report to: ghsiao@rbcds.com or ghsiao@netzero.net Permission to use, copy, modify, and distribute this software for NON-COMMERCIAL purposes and without fee is hereby granted provided that this copyright notice appears in all copies. This software is distributed on an 'as is' basis without warranty. */ CC = g++ POBS = DskMBTree.o POBException.o Gbiostream.o objAvl.o example.o EXAMPOBJ1 = example1.o example.o ${POBS} EXAMPOBJ2 = example2.o example.o ${POBS} EXAMP1 = examp1 EXAMP2 = examp2 $(EXAMP1) : ${EXAMPOBJ1} $(CC) -o $@ ${EXAMPOBJ1} $(EXAMP2) : ${EXAMPOBJ2} $(CC) -o $@ ${EXAMPOBJ2} DskMBTree.o : DskMBTree.C $(CC) -c $? POBException.o : POBException.C $(CC) -c $? Gbiostream.o : Gbiostream.C $(CC) -c $? objAvl.o : objAvl.C $(CC) -c $? example.o : example.C $(CC) -c $? clean: rm *.o