89474b00de
git-svn-id: http://kdtree.googlecode.com/svn/trunk@25 58b2c0e6-ac2f-0410-a5b6-b51bcff41737
15 lines
214 B
Makefile
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
|