source: OGRE/trunk/ogrenew/Tools/MayaExport/Makefile @ 657

Revision 657, 579 bytes checked in by mattausch, 19 years ago (diff)

added ogre dependencies and patched ogre sources

Line 
1# Makefile for Maya-OGRE under Linux
2# **make sure the environment variable MAYA_LOCATION is set**
3
4CXXFLAGS        =-g -O2 -I${MAYA_LOCATION}/include -Imaya2ogre/include -Ishared/include -D_BOOL
5LDFLAGS         =-lOpenMayaAnim
6LD              =$(MAYA_LOCATION)/bin/mayald
7
8MO_OBJS=maya2ogre/src/OgreMayaScene.o maya2ogre/src/maya2ogre.o
9SHARED_OBJS=shared/src/OgreMayaMaterial.o\
10        shared/src/OgreMayaOptions.o\
11        shared/src/OgreMayaMesh.o\
12        shared/src/OgreMayaSkeleton.o
13
14MAYA2OGRE_OBJS=$(MO_OBJS) $(SHARED_OBJS)
15
16m2o: $(MAYA2OGRE_OBJS)
17        $(LD)   -o $@ $^  $(LDFLAGS)
18
19clean:
20        rm $(MO_OBJS) $(SHARED_OBJS)
Note: See TracBrowser for help on using the repository browser.