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.
16 lines
359 B
Makefile
16 lines
359 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
GLUTEventAdapter.cpp\
|
|
Version.cpp\
|
|
Window.cpp\
|
|
Viewer.cpp\
|
|
|
|
LIBS += $(GLUT_LIB) $(GL_LIBS) -losgGA -losgUtil -losgDB -losg $(OTHER_LIBS)
|
|
DEF += -DOSGGLUT_LIBRARY
|
|
TARGET_BASENAME = osgGLUT
|
|
LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|