bdd04bef60
osgarchive osgconv osgdem osgversion osgviewer into applications directory. Leaving them in the examples directory as well, for now. Made examples optional via the make COMPILE_EXAMPLES=yes option Added static lib and static plugin build support.
23 lines
420 B
Makefile
23 lines
420 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
GeoSet.cpp\
|
|
IO_GeoSet.cpp\
|
|
OrientationConverter.cpp\
|
|
osgconv.cpp\
|
|
|
|
HEADERFILES = \
|
|
OrientationConverter.h
|
|
|
|
LIBS += -losgProducer -lProducer -losgText -losg -losgUtil -losgGA -losgDB $(GL_LIBS) $(OTHER_LIBS)
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
$(HEADERFILES)\
|
|
GNUmakefile.inst=GNUmakefile
|
|
|
|
EXEC = osgconv
|
|
|
|
include $(TOPDIR)/Make/makerules
|