aboutsummaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-12-15 07:26:47 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-12-15 07:26:47 +0000
commit37b6643df2df7d784a31ca73f7bb90dc109c2401 (patch)
treea8664e5adcfcb60cae136063d627549ecb76619b /Makefile.config.in
parentc50ce0e0217ea07e2d450add2ab29cecea66fa96 (diff)
removing PDP source (except debian files) before import of PDP 0.12.4
svn path=/trunk/externals/pdp/; revision=4217
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in40
1 files changed, 0 insertions, 40 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
deleted file mode 100644
index 5b0c2ac..0000000
--- a/Makefile.config.in
+++ /dev/null
@@ -1,40 +0,0 @@
-# if configure can't find the m_pd.h header
-# specify pd's include path here and ignore the warning
-#
-#PD_CPPFLAGS=-I/path_to_pd_dir/src
-#PD_EXECUTABLE=/path_to_pd_dir/bin/pd
-PD_CPPFLAGS=@PD_CPPFLAGS@
-PD_EXECUTABLE=@PD_EXECUTABLE@
-
-
-prefix=@prefix@
-PDP_VERSION = @PDP_VERSION@
-PDP_TARGET = @PDP_TARGET@
-PDP_LIBRARY_NAME = @PDP_LIBRARY_NAME@
-PDP_OPTMOD = @PDP_OPTMOD@
-PDP_EXTRA_CPPFLAGS = @PDP_EXTRA_CPPFLAGS@
-PDP_EXTRA_CFLAGS = @PDP_EXTRA_CFLAGS@
-SDL_FLAGS = -D_REENTRANT
-
-PDP_CPPFLAGS = -I. -I/usr/X11R6/include -I../include -I../../include $(PD_CPPFLAGS) $(PDP_EXTRA_CPPFLAGS)
-PDP_LIBS = @LIBS@
-PDP_AFLAGS =
-#--gstabs
-PDP_CFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
- -Wall -W -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch -DPDP_VERSION=\"$(PDP_VERSION)\" \
- -g $(SDL_CFLAGS) $(PDP_EXTRA_CFLAGS)
-# -Werror
-# -Wshadow
-
-# compiler and assembler
-#CC = gcc-3.2
-#CC = gcc
-#AS = as
-
-# build rules
-
-.c.o:
- $(CC) $(PDP_CFLAGS) $(PDP_CPPFLAGS) -o $*.o -c $*.c
-.s.o:
- $(AS) -o $*.o $*.s $(PDP_AFLAGS)