fa33244f92
2) Changed Makedepend system to make individual dependency files, which should save time rebuilding dependencies by limiting the regeneration of dependency file for only modified source files.
20 lines
349 B
Makefile
20 lines
349 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
osgcameragroup.cpp\
|
|
|
|
LIBS += -losgProducer -lProducer $(OSG_LIBS) $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS)
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
Makefile.inst=Makefile
|
|
|
|
EXEC = osgcameragroup
|
|
|
|
CXXFLAGS += $(PRODUCER_INCLUDE_DIR)
|
|
LDFLAGS += $(PRODUCER_LIB_DIR)
|
|
|
|
include $(TOPDIR)/Make/makerules
|
|
|