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.
22 lines
328 B
Makefile
22 lines
328 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
OrientationConverter.cpp\
|
|
osgconv.cpp\
|
|
|
|
HEADERFILES = \
|
|
OrientationConverter.h
|
|
|
|
LIBS += -losg -losgUtil -losgDB $(GL_LIBS) $(OTHER_LIBS)
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
$(HEADERFILES)\
|
|
Makefile.inst=Makefile
|
|
|
|
EXEC = osgconv
|
|
|
|
|
|
include $(TOPDIR)/Make/makerules
|