added prefixes and suffixes to libs and plugins. ALl this to accomodate cygwin... Also added INST_SYS_PREFIX and INST_SHARE_PREFIX for installation, as well as "standardizing" the install locations for the various platforms.
27 lines
464 B
Makefile
27 lines
464 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
DynamicLibrary.cpp\
|
|
FileNameUtils.cpp\
|
|
FileUtils.cpp\
|
|
ReadFile.cpp\
|
|
Registry.cpp\
|
|
Version.cpp\
|
|
WriteFile.cpp\
|
|
Input.cpp\
|
|
Output.cpp\
|
|
Field.cpp\
|
|
FieldReader.cpp\
|
|
FieldReaderIterator.cpp\
|
|
DotOsgWrapper.cpp\
|
|
|
|
|
|
LIBS += -losg $(OTHER_LIBS) $(DYNAMICLIBRARYLIB)
|
|
DEF += -DOSGDB_LIBRARY
|
|
|
|
TARGET_BASENAME = osgDB
|
|
LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|