[PD-cvs] SF.net SVN: pure-data: [10128] trunk/externals/pdp_opencv

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Tue Jul 1 11:56:23 CEST 2008


Revision: 10128
          http://pure-data.svn.sourceforge.net/pure-data/?rev=10128&view=rev
Author:   eighthave
Date:     2008-07-01 02:56:23 -0700 (Tue, 01 Jul 2008)

Log Message:
-----------
update Makefile to build on Mac OS X and also build objectclasses as individual files instead of multi-class/single-file lib

Modified Paths:
--------------
    trunk/externals/pdp_opencv/Makefile

Removed Paths:
-------------
    trunk/externals/pdp_opencv/Makefile.config

Modified: trunk/externals/pdp_opencv/Makefile
===================================================================
--- trunk/externals/pdp_opencv/Makefile	2008-07-01 09:56:21 UTC (rev 10127)
+++ trunk/externals/pdp_opencv/Makefile	2008-07-01 09:56:23 UTC (rev 10128)
@@ -1,16 +1,61 @@
-current: all
+PD_DIR = ../../pd
+PDP_DIR = ../pdp
 
-include Makefile.config
+GEM_OPENCV_VERSION = 0.1
 
-PDP_MOD = pdp_opencv_threshold.o pdp_opencv_edge.o pdp_opencv_distrans.o pdp_opencv_laplace.o pdp_opencv_motempl.o pdp_opencv_morphology.o pdp_opencv_haarcascade.o pdp_opencv_contours_convexity.o pdp_opencv_contours_boundingrect.o pdp_opencv_bgsubstract.o pdp_opencv_lk.o pdp_opencv_floodfill.o pdp_opencv.o 
+# build flags
 
+INCLUDES =  -I$(PD_DIR)/src -I.  -I$(PDP_DIR)/include -I$(PD_DIR)/src
+CPPFLAGS  = -DPD -O2 -funroll-loops -fomit-frame-pointer  -ffast-math \
+    -Wall -W -Wno-unused -Wno-parentheses -Wno-switch \
+    -DGEM_OPENCV_VERSION=\"$(GEM_OPENCV_VERSION)\" -g
 
-# build basic image processing modules (derived from base class)
-all: $(PDP_MOD)
-	$(CC) -export_dynamic -shared -o pdp_opencv.pd_linux *.o $(PDP_LIBS) `pkg-config --cflags --libs opencv`
 
+UNAME := $(shell uname -s)
+ifeq ($(UNAME),Linux)
+ INCLUDES += `pkg-config --cflags opencv`
+ LDFLAGS =  -export_dynamic -shared
+ LIBS = `pkg-config --libs opencv`
+ EXTENSION = pd_linux
+endif
+ifeq ($(UNAME),Darwin)
+ OPENCV_DIR = ../pix_opencv/opencv-1.0.0
+ INCLUDES += -I$(OPENCV_DIR)/cv/include -I$(OPENCV_DIR)/cxcore/include -I$(OPENCV_DIR)/cvaux/include -I/sw/include
+ LDFLAGS =  -bundle -undefined dynamic_lookup
+ LIBS =  -lm $(OPENCV_DIR)/build/cv/src/.libs/lib_cv.a -L/sw/lib
+ EXTENSION = pd_darwin
+endif
+ifeq (MINGW,$(findstring MINGW,$(UNAME)))
+ OPENCV_DIR = opencv-1.0.0
+ INCLUDES += -I$(OPENCV_DIR)/cv/include -I$(OPENCV_DIR)/cxcore/include -I$(OPENCV_DIR)/cvaux/include
+ CPPFLAGS += -mms-bitfields -DMSW -DNT $(WINDOWS_HACKS)
+ LDFLAGS += -shared
+ LIBS = -L$(pd_src)/bin -L$(pd_src)/obj -lpd -lkernel32 -luser32 -lgdi32 \
+	-lm $(OPENCV_DIR)/build/cv/src/.libs/lib_cv.a
+endif
+
+.SUFFIXES = $(EXTENSION)
+
+SOURCES = pdp_opencv_threshold.c pdp_opencv_edge.c pdp_opencv_distrans.c pdp_opencv_laplace.c pdp_opencv_motempl.c pdp_opencv_morphology.c pdp_opencv_haarcascade.c pdp_opencv_contours_convexity.c pdp_opencv_contours_boundingrect.c pdp_opencv_bgsubstract.c pdp_opencv_lk.c pdp_opencv_floodfill.c
+
+all: $(SOURCES:.c=.$(EXTENSION))
+
+%.$(EXTENSION): %.o
+	gcc $(LDFLAGS) -o $*.$(EXTENSION) $*.o $(LIBS)
+
+.cc.o:
+	g++ $(CPPFLAGS) $(INCLUDES) -o $*.o -c $*.cc
+
+.c.o:
+	gcc $(CPPFLAGS) $(INCLUDES) -o $*.o -c $*.c
+
+install:
+	cp -f --remove-destination *.pd $(PD_DIR)/doc/5.reference
+
 clean:
-	rm -f *~
-	rm -f *.o
-	rm -f *.pd_linux
+	rm -f pix_opencv*.o
+	rm -f pix_opencv*.$(EXTENSION)
 
+distro: clean all
+	rm *.o
+

Deleted: trunk/externals/pdp_opencv/Makefile.config
===================================================================
--- trunk/externals/pdp_opencv/Makefile.config	2008-07-01 09:56:21 UTC (rev 10127)
+++ trunk/externals/pdp_opencv/Makefile.config	2008-07-01 09:56:23 UTC (rev 10128)
@@ -1,25 +0,0 @@
-# if configure can't find the m_pd.h header         
-# specify pd's include path here and ignore the warning
-#
-OPENCV_CPPFLAGS=-I/usr/include/opencv/
-PD_CPPFLAGS=-I/usr/src/pd-0.40-2/src
-PDP_CFLAGS=-I/usr/src/pdp-0.12.5-test-7/include -DPD -Wall -W -Wstrict-prototypes -Wno-unused -Wno-parentheses -Wno-switch -O2 -funroll-loops -fomit-frame-pointer -ffast-math -freg-struct-return -DLINUX 
-
-prefix=/usr/local
-PDP_CV_VERSION = 0.0.1
-PDP_TARGET = linux
-PDP_LIBRARY_NAME = pdp_opencv.pd_linux
-
-PDP_CPPFLAGS =  -I. -I/usr/X11R6/include  -I../include -I../../include $(PD_CPPFLAGS) $(OPENCV_CPPFLAGS) 
-#--gstabs
-
-PDP_CFLAGS += -DPDP_CV_VERSION=\"$(PDP_CV_VERSION)\" 
-
-CC = gcc
-
-# build rules
-
-.c.o:
-	$(CC) $(PDP_CFLAGS) $(PDP_CPPFLAGS) -o $*.o -c $*.c
-.s.o:
-	$(AS) -o $*.o $*.s $(PDP_AFLAGS) `pkg-config --cflags --libs opencv`


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list