rayfract

changeset 7:c27b24c9fdd2

fixed the makefile to work on freebsd
author John Tsiombikas <nuclear@mutantstargoat.com>
date Wed, 05 Oct 2011 02:26:46 +0300
parents 8a9aa21b32cf
children dfe7c98cf373
files Makefile
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/Makefile	Sat Jun 18 01:04:25 2011 +0300
     1.2 +++ b/Makefile	Wed Oct 05 02:26:46 2011 +0300
     1.3 @@ -11,9 +11,9 @@
     1.4  
     1.5  CC = gcc
     1.6  CXX = g++
     1.7 -CFLAGS = -pedantic -Wall -g `pkg-config --cflags vmath`
     1.8 -CXXFLAGS = -pedantic -Wall -g `pkg-config --cflags vmath`
     1.9 -LDFLAGS = $(libgl) `pkg-config --libs vmath freetype2` -limtk
    1.10 +CFLAGS = -pedantic -Wall -g -I/usr/local/include `pkg-config --cflags vmath`
    1.11 +CXXFLAGS = -pedantic -Wall -g -I/usr/local/include `pkg-config --cflags vmath`
    1.12 +LDFLAGS = -L/usr/local/lib $(libgl) `pkg-config --libs vmath` -limtk
    1.13  
    1.14  $(bin): $(obj)
    1.15  	$(CXX) -o $@ $(obj) $(LDFLAGS)