aboutsummaryrefslogtreecommitdiff
path: root/makefile.linux
blob: 5efc24f3b9b3f35049a3d5aaddf17103b870b922 (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
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
# the ANN-EXTERNAL-makefile
# everything is GnuGPL that should come with the ann.tgz
# NO WARRANTIES FOR ANYTHING
# et cetera
# (l) forum::für::umläute 2001

# make sure that the "m_pd.h" is somehow available either by putting it into this
# directory, by adding it's path to the INCLUDE-path or by putting it into an
# already included path, e.g. "/usr/local/include/"
# download fann libraries from http://fann.sourceforge.net
# and install from source
# make sure that fann.h is available

#these are the user adjustables : adjust them to fit into your system
# PD will install to $(DESTDIR)$(INSTALLL_PREFIX)$(PDLIBDIR), which is /usr/local/lib/pd
# by default
DESTDIR =
INSTALL_PREFIX = /usr/local
PDLIBDIR = /lib/pd

# the *.dll-files go into $(DESTDIR)$(INSTALLL_PREFIX)$(PDLIBDIR)$(LIBRARY_DIR)
LIBRARY_DIR=/extra
# the reference-files go into $(DESTDIR)$(INSTALLL_PREFIX)$(PDLIBDIR)$(REFERENCE_DIR)
#REFERENCE_DIR=/doc/5.reference/ann
REFERENCE_DIR=/extra/help-ann

#these were the user adjustables
#---------------------------------


TARGETS = rhythms_memory.c \
	chords_memory.c   \
	harmonizer.c    \
	GArhythm.c \
	chord_melo.c \
	ritmo1.c \
	voicing_analyzer.c \
	themes_memory.c

# ----------------------- LINUX ----------------------------
.SUFFIXES: .pd_linux


LINUXOBJECTS = $(TARGETS:%=%.o)
ARCH = $(shell uname --machine)

PD_DIR = $(DESTDIR)$(INSTALL_PREFIX)$(PDLIBDIR)
PD_INSTALLDIR_LIB = $(PD_DIR)$(LIBRARY_DIR)
PD_INSTALLDIR_REF = $(PD_DIR)$(REFERENCE_DIR)

ifeq (${ARCH},alpha)
AFLAGS = -mieee	 -mcpu=ev56
endif


STRIP=strip
STRIPFLAGS=--strip-unneeded


LINCLUDE =

OPTIMIZE_FLAGS = -O2 -O6 -funroll-loops -march=pentium3
DEFS = -DPD

#CFLAGS = -O2 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS)
CFLAGS = $(OPTIMIZE_FLAGS) -fomit-frame-pointer -fPIC -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS) $(DEFS)

LDFLAGS = -Wl,-export_dynamic -shared
LIBS = -lc -lm

# here come the targets

all: $(TARGETS:%.c=%.pd_linux)

%.pd_linux: %.c
	$(CC) $(CFLAGS) $(INCLUDE) $(LDFLAGS) -o "$*.pd_linux" "$*.c" common.c $(LIBS)
	$(STRIP) $(STRIPFLAGS) "$*.pd_linux"


frankenstein: $(TARGETS:%.c=%.o)
	$(CC) $(CFLAGS) $(INCLUDE) -o frankenstein.o -c frankenstein.c
	$(CC) $(LDFLAGS) -o frankenstein.pd_linux *.o $(LIBS)
	$(STRIP) $(STRIPFLAGS) frankenstein.pd_linux

%.o: %.c
	$(CC) $(CFLAGS) $(INCLUDE) -o "$*.o" common.o -c "$*.c" common.c



everything: clean all install distclean

distclean:
	-rm *.o *.pd_linux *~

clean:
	-rm *.o *.pd_linux

install: installdocs
	install -m 644 ann*.pd_linux $(PD_INSTALLDIR_LIB)

installdocs:
	install -d $(PD_INSTALLDIR_REF)
	install -m644 ../examples/* $(PD_INSTALLDIR_REF)