goat3d

view generators/goatprim/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 b59a3650ed51
children
line source
1 obj = main.o
2 bin = goatprim
4 goat_root = ../..
6 ifeq ($(shell uname -s), Darwin)
7 libgoat = $(goat_root)/libgoat3d.dylib
8 else
9 libgoat = $(goat_root)/libgoat3d.so.0.1
10 endif
12 CC = clang
13 CXX = clang++
14 CFLAGS = -pedantic -Wall -g -I$(goat_root)/src
15 LDFLAGS = $(libgoat)
17 $(bin): $(obj) $(libgoat)
18 $(CXX) -o $@ $(obj) $(LDFLAGS)
20 .PHONY: clean
21 clean:
22 rm -f $(obj) $(bin)