aboutsummaryrefslogtreecommitdiff
path: root/opengl/Makefile.config
diff options
context:
space:
mode:
authorPablo Martín <caedesv@users.sourceforge.net>2003-09-07 21:45:05 +0000
committerPablo Martín <caedesv@users.sourceforge.net>2003-09-07 21:45:05 +0000
commit213978fa8a868661dda88e6b4e7cacec1c90677a (patch)
treeada4aa53b2e25926c93bc1d4f2d19cbd018d1493 /opengl/Makefile.config
parent599a8e20c02fa48bab5102d15fab79dd6b631c95 (diff)
Updating pdp to current version 0.12.2
svn path=/trunk/externals/pdp/; revision=941
Diffstat (limited to 'opengl/Makefile.config')
-rw-r--r--opengl/Makefile.config25
1 files changed, 25 insertions, 0 deletions
diff --git a/opengl/Makefile.config b/opengl/Makefile.config
new file mode 100644
index 0000000..4e59a4c
--- /dev/null
+++ b/opengl/Makefile.config
@@ -0,0 +1,25 @@
+PD_DIR = /home/tom/pd/distro/pd/src
+PDP_DIR = /home/tom/pd/packet/include
+PDP_OGL_DIR = /home/tom/pd/packet/opengl/include
+
+
+
+CFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
+ -Wall -W -Wstrict-prototypes -Werror \
+ -Wno-unused -Wno-parentheses -Wno-switch -g
+
+CPPFLAGS = -I$(PD_DIR) -I$(PDP_DIR) -I$(PDP_OGL_DIR) -I/usr/X11R6/include
+LDFLAGS = -lGL -lglut
+
+TARGET=linux
+
+#uncomment these for darwin:
+#TARGET=darwin
+#CPPFLAGS+=-I/sw/include
+#PD_EXECUTABLE=/usr/local/bin/pd
+#LDFLAGS = -lGL -lGLU -lglut -lX11 -L/sw/lib -L/usr/X11R6/lib
+
+
+
+.c.o:
+ $(CC) $(CFLAGS) $(CPPFLAGS) -o $*.o -c $*.c