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

@@ -385,7 +385,7 @@ endif
ifeq ($(OS),Darwin)
C++ = c++
INC += -I/usr/X11R6/include
LDFLAGS += -L/usr/X11R6/lib
LDFLAGS += -L/usr/X11R6/lib -L/sw/lib
DEF += -Wall -D__DARWIN_OSX__
OPTF = -O2
DBGF = -g -DOSG_COMPILE_UNIT_TESTS

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 *~