diff options
Diffstat (limited to 'pdp_1394L/Makefile.config')
-rw-r--r-- | pdp_1394L/Makefile.config | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pdp_1394L/Makefile.config b/pdp_1394L/Makefile.config new file mode 100644 index 0000000..53a5f11 --- /dev/null +++ b/pdp_1394L/Makefile.config @@ -0,0 +1,21 @@ +# if configure can't find the m_pd.h header +# specify pd's include path here and ignore the warning +# +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 +PDPV4L2_VERSION = 0.1 +PDPV4L2_TARGET = linux +PDPV4L2_LIBRARY_NAME = pdp_v4l2.pd_linux + +PDP_CPPFLAGS = -I. -I/usr/X11R6/include -I../include -I../../include -I/usr/include/libdv/ $(PD_CPPFLAGS) + +PDP_CFLAGS += -DPDPV4L2_VERSION=\"$(PDPV4L2_VERSION)\" + +CC = gcc + +# build rules + +.c.o: + $(CC) $(PDP_CFLAGS) $(PDP_CPPFLAGS) -o $*.o -c $*.c |