[Avl-cvs] avl/src Makefile,NONE,1.1 avlt.h,1.3,1.4
Brought to you by:
hetfield666,
jah2003
From: Patrizio B. <het...@us...> - 2004-06-24 17:40:28
|
Update of /cvsroot/avl/avl/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2338/src Modified Files: avlt.h Added Files: Makefile Log Message: added Makefile and fixed a compilation issue (yes..fixable with -I flag too) --- NEW FILE: Makefile --- # AVL Project CC=g++ -O2 LIBS=avlt.o bst.o BINARY=avl all: $(LIBS) $(CC) avl.cpp -o $(BINARY) $(LIBS) avlt.o: $(CC) -c avlt.cpp -o avlt.o bst.o: $(CC) -c bst.cpp -o bst.o clean: rm *.o -f Index: avlt.h =================================================================== RCS file: /cvsroot/avl/avl/src/avlt.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** avlt.h 24 Jun 2004 17:03:23 -0000 1.3 --- avlt.h 24 Jun 2004 17:40:18 -0000 1.4 *************** *** 23,27 **** #include <vector> ! #include <bst.h> using namespace std; --- 23,27 ---- #include <vector> ! #include "bst.h" using namespace std; |