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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Makefile for icc @ linux adapted from Thomas Grill's xsample makefile
#
# usage:
# to build run "make"
# to install (as root), do "make install"
#
# your c++ compiler (if not g++)
CXX=icc
# where does the PD installation reside?
PD=/usr/lib/pdsrc/pd
# where are the PD header files?
# leave it blank if it is a system directory (like /usr/local/include),
# since gcc 3.2 complains about it
PDINC=
# where do the flext libraries reside?
FLEXTPATH=/usr/lib/flext
# where should the objects be built?
TARGDIR=./
# where should tbext be installed?
# (leave blank to omit installation)
INSTDIR=${PD}/externs
# where should the tbext help be installed?
# (leave blank to omit installation)
HELPDIR=${PD}/doc/5.reference
# additional compiler flags
# (check whether they fit to your system!)
# UFLAGS=-mcpu=pentiumpro # gcc 2.95
# UFLAGS=-mcpu=pentium4 -mmmx -msse2 -msse -mfpmath=sse # gcc 3.2
UFLAGS= -O3 -xW -tpp7 -ip -ipo #icc
FLEXTLIB=$(FLEXTPATH)/flext.a
# compiler stuff
INCLUDES=$(PDINC)
FLAGS=-DFLEXT_SYS=2 -D__GNUG__
CFLAGS=${UFLAGS} -O6 -funroll-loops -fmove-all-movables -frerun-loop-opt -finline-functions -fno-rtti -fno-exceptions
LDFLAGS=$(CFLAGS)
LIBS=m
# ----------------------------------------------
# the rest can stay untouched
# ----------------------------------------------
NAME=tbext
SRCDIR=source
include make-files.txt
MAKEFILE=makefile
TARGET=$(TARGDIR)/$(NAME).pd_linux
# default target
all: $(TARGDIR) $(TARGET)
$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(MAKEFILE) $(CONFIG)
touch $(patsubst %,$(SRCDIR)/%,$(SRCS))
$(TARGDIR):
-mkdir $(TARGDIR)
$(TARGDIR)/%.o : $(SRCDIR)/%.cpp
$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
$(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS)) $(FLEXTLIB)
$(CXX) $(LDFLAGS) -shared $^ $(patsubst %,-l%,$(LIBS)) -o $@
strip --strip-unneeded $@
chmod 755 $@
$(INSTDIR):
-mkdir $(INSTDIR)
install:: $(INSTDIR)
install:: $(TARGET)
cp $^ $(INSTDIR)
chown root.root $(patsubst %,$(INSTDIR)/%,$(notdir $^))
$(HELPDIR):
-mkdir $(HELPDIR)
install-help:: $(HELPDIR)
install-help:: ./pd
chmod 644 $^/*.*
cp $^/*.* $(HELPDIR)
.PHONY: clean
clean:
rm -f $(TARGDIR)/*.o $(TARGDIR)/*.il $(TARGET)
|