goat3d

view libs/tinyxml2/Makefile @ 103:45a9d493e98c

fixed the input latency issue by calling QWidget::update() instead of QGLWidget::updateGL() update schedules an update instead of redrawing immediately.
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 12 Sep 2015 17:40:02 +0300
parents
children
line source
1 obj = tinyxml2.o
2 lib = libtinyxml2.a
4 ifneq ($(shell uname -s), Darwin)
5 pic = -fPIC
6 endif
8 CXXFLAGS = -pedantic -Wall -g $(pic)
10 $(lib): $(obj)
11 $(AR) rcs $@ $(obj)
13 .PHONY: clean
14 clean:
15 rm -f $(obj) $(lib)