blob: 5b0c2ac3374f16301f297dd94f0d2ffa6e30030d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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)
|