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 831d220
Show file tree
Hide file tree
Showing 4 changed files with 940 additions and 3 deletions.
5 changes: 3 additions & 2 deletions irteus/Makefile
Original file line number Diff line number Diff line change
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)/irtgraphc.$(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)/irtgraphc.$(OSFX): irtgraphc.c $(filter-out $(INSTALLOBJDIR)/irtgraphc.$(OSFX),$(IRTEUSOBJS) $(IRTEUSGOBJS) $(IRTGCOBJECTS) PQP/$(ARCHDIR)/libPQP-static.a $(IRTEUSXOBJS) $(INSTALLLIBDIR)/jpegmemcd.$(LSFX) $(IRTEUSIMGOBJS) $(IRTIMGCOBJECTS) $(IRTEUSGLOBJS))
$(CC) $(CFLAGS) -c irtgraphc.c $(OBJOPT)$(INSTALLOBJDIR)/irtgraphc.$(OSFX)
$(INSTALLLIBDIR)/jpegmemcd.$(LSFX): $(EUSDIR)/lisp/image/jpeg/jpegmemcd.c
(cd $(EUSDIR)/lisp/image/jpeg/;make ARCH=$(ARCHDIR) LIBDIR=$(INSTALLLIBDIR) OBJDIR=$(INSTALLOBJDIR))
2 changes: 1 addition & 1 deletion irteus/irtext.l
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
(load-library
(format nil "~A~A/lib/libirteus"
*eusdir* (unix:getenv "ARCHDIR"))
'("irtmath" "irtutil" "irtc" "irtgeoc" "irtgraph" "pgsql")))
'("irtmath" "irtutil" "irtc" "irtgeoc" "irtgraph" "pgsql" "irtgraphc")))
(defun load-irteusg ()
(in-package "GEOMETRY")
(load-library
Expand Down
Loading

0 comments on commit 831d220

Please sign in to comment.