kdtree/examples/Makefile
jtsiomb 89474b00de moving arround files
git-svn-id: http://kdtree.googlecode.com/svn/trunk@25 58b2c0e6-ac2f-0410-a5b6-b51bcff41737
2009-08-27 20:21:37 +00:00

15 lines
214 B
Makefile

kdlib = ../libkdtree.a
CC = gcc
CFLAGS = -std=c89 -pedantic -Wall -g -I..
LDFLAGS = $(kdlib) -lm
.PHONY: all
all: test test2
test: test.c $(kdlib)
test2: test2.c $(kdlib)
.PHONY: clean
clean:
rm -f test test2