fc7664a69f
importing tweaked to support importing from multiple mesh files. bone remapping is supported for animations that have extra/missing bones. complex commandline deprecated, now supports a proper import script thing, so the fte-specific iqm extension info can be specified. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5039 fc73d0e0-1445-4013-8a0c-d673dee63da5
19 lines
340 B
Makefile
19 lines
340 B
Makefile
CXXFLAGS= -O3 -fomit-frame-pointer
|
|
override CXXFLAGS+= -Wall -fsigned-char
|
|
|
|
IQM_OBJS= \
|
|
iqm.o
|
|
UPGRADE_OBJS= \
|
|
upgrade.o
|
|
|
|
default: all
|
|
|
|
all: iqm #upgrade
|
|
|
|
clean:
|
|
-$(RM) $(IQM_OBJS) $(UPGRADE_OBJS) iqm upgrade
|
|
|
|
iqm: $(IQM_OBJS)
|
|
$(CXX) $(CXXFLAGS) -o iqm $(IQM_OBJS)
|
|
upgrade: $(UPGRADE_OBJS)
|
|
$(CXX) $(CXXFLAGS) -o upgrade $(UPGRADE_OBJS)
|