Clean ups for the release.

This commit is contained in:
Robert Osfield
2003-09-11 09:44:22 +00:00
parent 41a07127fe
commit d8caec91a4
4 changed files with 1 additions and 17 deletions

View File

@@ -1,16 +0,0 @@
CXXFLAGS=-g -Wall
OBJS=scanner.o parser.o main.o nodecache.o osgvisitor.o normals.o readerwriter.o
TARGET=osgdb_iv.so
$(TARGET): $(OBJS)
$(CXX) -shared $(OBJS) -o osgdb_wrl.so
scanner.cpp: scanner.l parser.cpp
flex -oscanner.cpp scanner.l
parser.cpp: parser.y
bison --debug -d -o parser.cpp parser.y
clean:
rm -f *.o main $(TARGET) $(OBJS) scanner.cpp parser.cpp *~