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 | |
---|
4 | CXXFLAGS =-g -O2 -I${MAYA_LOCATION}/include -Imaya2ogre/include -Ishared/include -D_BOOL |
---|
5 | LDFLAGS =-lOpenMayaAnim |
---|
6 | LD =$(MAYA_LOCATION)/bin/mayald |
---|
7 | |
---|
8 | MO_OBJS=maya2ogre/src/OgreMayaScene.o maya2ogre/src/maya2ogre.o |
---|
9 | SHARED_OBJS=shared/src/OgreMayaMaterial.o\ |
---|
10 | shared/src/OgreMayaOptions.o\ |
---|
11 | shared/src/OgreMayaMesh.o\ |
---|
12 | shared/src/OgreMayaSkeleton.o |
---|
13 | |
---|
14 | MAYA2OGRE_OBJS=$(MO_OBJS) $(SHARED_OBJS) |
---|
15 | |
---|
16 | m2o: $(MAYA2OGRE_OBJS) |
---|
17 | $(LD) -o $@ $^ $(LDFLAGS) |
---|
18 | |
---|
19 | clean: |
---|
20 | rm $(MO_OBJS) $(SHARED_OBJS) |
---|
Note: See
TracBrowser
for help on using the repository browser.