27 lines
424 B
Makefile
27 lines
424 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
broadcaster.cpp\
|
|
osgcluster.cpp\
|
|
receiver.cpp\
|
|
|
|
HEADERFILES =\
|
|
broadcaster.h\
|
|
receiver.h\
|
|
|
|
|
|
LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(SOCKET_LIBS) $(OTHER_LIBS)
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
$(HEADERFILES)\
|
|
GNUmakefile.inst=GNUmakefile
|
|
|
|
EXEC = osgcluster
|
|
|
|
|
|
INC += $(X_INC)
|
|
|
|
include $(TOPDIR)/Make/makerules
|