afe62bcf7f
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6019 fc73d0e0-1445-4013-8a0c-d673dee63da5
25 lines
538 B
Makefile
25 lines
538 B
Makefile
#Note: This makefile builds the iqm tool without any fte dependancies
|
|
# This means no .mdl export nor extended model format support (read: no gltf/glb import)
|
|
|
|
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)
|
|
|
|
%.o : %.cpp
|
|
$(CXX) -o $@ -c $<
|