aboutsummaryrefslogtreecommitdiff
path: root/Makefile.config
diff options
context:
space:
mode:
authorTom Schouten <doelie@users.sourceforge.net>2003-02-28 09:48:54 +0000
committerTom Schouten <doelie@users.sourceforge.net>2003-02-28 09:48:54 +0000
commit8227dc75b8e236f7f9629d1bc49fae0addee3def (patch)
tree13f2aec426201ee87dd0cbda0860082315dfa1ae /Makefile.config
parenta0aef64af84622e8d6d02c7714fb82178dea0286 (diff)
pdp config
svn path=/trunk/externals/pdp/; revision=440
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config49
1 files changed, 0 insertions, 49 deletions
diff --git a/Makefile.config b/Makefile.config
deleted file mode 100644
index 694b79e..0000000
--- a/Makefile.config
+++ /dev/null
@@ -1,49 +0,0 @@
-# pd's directory
-PD_DIR = /home/tom/pd/distro/pd
-PDP_DIR = /home/tom/pd/packet
-
-#PD_DIR = /usr/local/pd
-#PDP_DIR = /usr/local/pdp
-
-# uncomment for philips webcam support
-# PDP_PWC = -DHAVE_V4LPWC
-
-# specify target
-#PDP_TARGET = linux
-PDP_TARGET = linux_mmx
-
-
-#################################################
-
-
-PDP_VERSION = 0.8.3
-PDP_DEFINES = $(PDP_PWC)
-
-# build flags
-#SDL_CFLAGS := $(shell sdl-config --cflags)
-#SDL_LDFLAGS := $(shell sdl-config --libs)
-SDL_FLAGS = -D_REENTRANT
-SDL_LDFLAGS = -lSDL
-
-PDP_INCLUDE = -I$(PD_DIR)/src -I. -I/usr/X11R6/include -I../include
-PDP_LIBS = -L/usr/X11R6/lib -lX11 -lXv -lXext -lm -lquicktime -ldl $(SDL_LDFLAGS)
-PDP_AFLAGS =
-#--gstabs
-PDP_CFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
- -Wall -W -Wstrict-prototypes -Werror \
- -Wno-unused -Wno-parentheses -Wno-switch $(PDP_DEFINES)\
- -DPDP_VERSION=\"$(PDP_VERSION)\" \
- -g $(SDL_CFLAGS)
-# -Wshadow
-
-# compiler and assembler
-#CC = gcc-3.2
-CC = gcc
-AS = as
-
-# build rules
-
-.c.o:
- $(CC) $(PDP_CFLAGS) $(PDP_INCLUDE) -o $*.o -c $*.c
-.s.o:
- $(AS) -o $*.o $*.s $(PDP_AFLAGS)