Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 79a1ffe

Browse files
committedJul 5, 2015
Add kdtree class to irtgraph.l
1 parent 9f4190f commit 79a1ffe

File tree

4 files changed

+941
-4
lines changed

4 files changed

+941
-4
lines changed
 

‎irteus/Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
### and non-profit purposes, without fee, and without a written
2020
### agreement is hereby granted to all researchers working on
2121
### the IRT project at the University of Tokyo, provided that the
22-
### above copyright notice remains intact.
22+
### above copyright notice remains intact.
2323
###
2424

2525
include ./Makefile.$(ARCHDIR)
@@ -90,7 +90,7 @@ IRTEUSGLDLLS=$(addprefix $(INSTALLOBJDIR)/,$(IRTEUSGL_LSFX))
9090
IRTEUSGL_C=$(addsuffix .c,$(IRTEUSGL))
9191
IRTEUSGL_H=$(addsuffix .h,$(IRTEUSGL))
9292

93-
IRTCOBJECTS=$(INSTALLOBJDIR)/irtc.$(OSFX) $(INSTALLOBJDIR)/irtgeoc.$(OSFX)
93+
IRTCOBJECTS=$(INSTALLOBJDIR)/irtc.$(OSFX) $(INSTALLOBJDIR)/irtgeoc.$(OSFX) $(INSTALLOBJDIR)/ckdtree.$(OSFX)
9494
IRTGCOBJECTS=$(INSTALLOBJDIR)/CPQP.$(OSFX) $(INSTALLOBJDIR)/euspqp.$(OSFX)
9595
IRTIMGCOBJECTS=$(INSTALLOBJDIR)/euspng.$(OSFX)
9696
NROBJECTS=$(INSTALLOBJDIR)/nr.$(OSFX)
@@ -202,6 +202,7 @@ $(INSTALLOBJDIR)/euspng.$(OSFX): euspng.c
202202
$(CC) $(CFLAGS) -c euspng.c $(OBJOPT)$(INSTALLOBJDIR)/euspng.$(OSFX)
203203
$(INSTALLOBJDIR)/nr.$(OSFX): nr.c
204204
$(CC) $(CFLAGS) -c nr.c $(OBJOPT)$(INSTALLOBJDIR)/nr.$(OSFX)
205-
205+
$(INSTALLOBJDIR)/ckdtree.$(OSFX): ckdtree.c
206+
$(CC) $(CFLAGS) -c ckdtree.c $(OBJOPT)$(INSTALLOBJDIR)/ckdtree.$(OSFX)
206207
$(INSTALLLIBDIR)/jpegmemcd.$(LSFX): $(EUSDIR)/lisp/image/jpeg/jpegmemcd.c
207208
(cd $(EUSDIR)/lisp/image/jpeg/;make ARCH=$(ARCHDIR) LIBDIR=$(INSTALLLIBDIR) OBJDIR=$(INSTALLOBJDIR))

0 commit comments

Comments
 (0)
Please sign in to comment.