24 lines
440 B
Makefile
24 lines
440 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
osgsimpleviewerQT3.cpp\
|
|
|
|
LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg -lqt-mt $(GL_LIBS) $(OTHER_LIBS)
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
GNUmakefile.inst=GNUmakefile
|
|
|
|
EXEC = osgsimpleviewerQT3
|
|
|
|
INC += -I/usr/lib/qt3/include
|
|
|
|
ifeq ($(ARCH),64)
|
|
LDFLAGS += -L/usr/lib/qt3/lib64
|
|
else
|
|
LDFLAGS += -L/usr/lib/qt3/lib
|
|
endif
|
|
|
|
include $(TOPDIR)/Make/makerules
|