23 lines
396 B
Makefile
23 lines
396 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
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
|
|
|
|
INC += $(X_INC)
|
|
|
|
include $(TOPDIR)/Make/makerules
|