Skip to content

Commit

Permalink
Add kdtree class to irtgraph.l
Browse files Browse the repository at this point in the history
  • Loading branch information
garaemon committed Jul 5, 2015
1 parent 9f4190f commit 79a1ffe
Show file tree
Hide file tree
Showing 4 changed files with 941 additions and 4 deletions.
7 changes: 4 additions & 3 deletions irteus/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
### and non-profit purposes, without fee, and without a written
### agreement is hereby granted to all researchers working on
### the IRT project at the University of Tokyo, provided that the
### above copyright notice remains intact.
### above copyright notice remains intact.
###

include ./Makefile.$(ARCHDIR)
Expand Down Expand Up @@ -90,7 +90,7 @@ IRTEUSGLDLLS=$(addprefix $(INSTALLOBJDIR)/,$(IRTEUSGL_LSFX))
IRTEUSGL_C=$(addsuffix .c,$(IRTEUSGL))
IRTEUSGL_H=$(addsuffix .h,$(IRTEUSGL))

IRTCOBJECTS=$(INSTALLOBJDIR)/irtc.$(OSFX) $(INSTALLOBJDIR)/irtgeoc.$(OSFX)
IRTCOBJECTS=$(INSTALLOBJDIR)/irtc.$(OSFX) $(INSTALLOBJDIR)/irtgeoc.$(OSFX) $(INSTALLOBJDIR)/ckdtree.$(OSFX)
IRTGCOBJECTS=$(INSTALLOBJDIR)/CPQP.$(OSFX) $(INSTALLOBJDIR)/euspqp.$(OSFX)
IRTIMGCOBJECTS=$(INSTALLOBJDIR)/euspng.$(OSFX)
NROBJECTS=$(INSTALLOBJDIR)/nr.$(OSFX)
Expand Down Expand Up @@ -202,6 +202,7 @@ $(INSTALLOBJDIR)/euspng.$(OSFX): euspng.c
$(CC) $(CFLAGS) -c euspng.c $(OBJOPT)$(INSTALLOBJDIR)/euspng.$(OSFX)
$(INSTALLOBJDIR)/nr.$(OSFX): nr.c
$(CC) $(CFLAGS) -c nr.c $(OBJOPT)$(INSTALLOBJDIR)/nr.$(OSFX)

$(INSTALLOBJDIR)/ckdtree.$(OSFX): ckdtree.c
$(CC) $(CFLAGS) -c ckdtree.c $(OBJOPT)$(INSTALLOBJDIR)/ckdtree.$(OSFX)
$(INSTALLLIBDIR)/jpegmemcd.$(LSFX): $(EUSDIR)/lisp/image/jpeg/jpegmemcd.c
(cd $(EUSDIR)/lisp/image/jpeg/;make ARCH=$(ARCHDIR) LIBDIR=$(INSTALLLIBDIR) OBJDIR=$(INSTALLOBJDIR))
Loading

0 comments on commit 79a1ffe

Please sign in to comment.