CXX = g++ # for debugging #CXXFLAGS = -g -march=i686 -O2 # excessive optimizations for pentium pro and later CXXFLAGS =-Wall -O3 -fexpensive-optimizations -pipe -fomit-frame-pointer -funroll-loops -DLINUXPPC -fexceptions CFLAGS=-ljgmod `allegro-config --libs release` -lalfont include file.list OBJS +=src/net/win2mac.o tmw: $(OBJS) $(CXX) -o tmw $(OBJS) $(CFLAGS) @echo - @echo - @echo "TYPE ./tmw TO LAUCH THE GAME" clean: - rm -fv *.o - rm -fv Net/*.o - rm -fv Gui/*.o - rm -fv Sound/*.o - rm -fv Graphic/*.o - rm -fv tmw