49a93076c1
local makefiles. Small change in txp loader for sun build
28 lines
576 B
Makefile
28 lines
576 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
osgcameragroup.cpp\
|
|
|
|
LIBS += -losgProducer -lProducer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) -lOpenThreads
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
GNUmakefile.inst=GNUmakefile
|
|
|
|
EXEC = osgcameragroup
|
|
|
|
INC += -I/usr/X11R6/include
|
|
LDFLAGS += -L/usr/X11R6/lib
|
|
|
|
|
|
ifeq ($(USE_OPEN_THREAD),1)
|
|
DEF += -D_USE_OPEN_THREAD
|
|
INC += $(INC_OPEN_THREAD)
|
|
LDFLAGS += $(LIB_OPEN_THREAD)
|
|
LIBS += -lOpenThread
|
|
endif
|
|
|
|
include $(TOPDIR)/Make/makerules
|
|
|