plugin names hanging around despite being deprecated. These definiations confused the make install/make instclean so it tried to link a non existant library. Have removed old definitions and everything intalls properly once more:-)
21 lines
428 B
Makefile
21 lines
428 B
Makefile
#!smake
|
|
include $(OSGHOME)/Make/makedefs
|
|
|
|
C++FILES = ReaderWriterDW.cpp
|
|
|
|
TARGET_BASENAME = osgdb_dw
|
|
|
|
LIB=
|
|
LOADABLE = $(OSGHOME)/lib/osgPlugins/$(TARGET_BASENAME).$(DL_EXT)
|
|
|
|
TARGET_LOADER_FILES = osgPlugins/$(TARGET_BASENAME).$(DL_EXT)
|
|
|
|
LIBS = $(GL_LIBS) -losg -losgDB
|
|
MACOSXLIBS = -L$(OSGHOME)/lib -losg -losgDB -lstdc++
|
|
|
|
C++FLAGS += -I. -I$(OSGHOME)/include
|
|
LDFLAGS += -L$(OSGHOME)/lib
|
|
|
|
include $(OSGHOME)/Make/makerules
|
|
|