summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
blob: 77b275c673f098b4bdc7cd91dffacbaff0ce0f12 (plain) (blame)
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
#bin_PROGRAMS = food cookbook cook synth
bin_PROGRAMS = synth

common_sources = adsr.c \
		 adsr.h \
		 control.c \
		 control.h \
		 filter.c \
                 filter.h \
                 lowpass.c \
                 lowpass.h \
                 Makefile.am \
                 midi.c \
                 midi.h \
                 notes.h \
                 osc.c \
                 osc.h \
                 osc_tri.c \
                 osc_sin.c \
                 osc_saw.c \
                 osc_weird.c \
                 osc_sound.c \
                 raygui.h \
                 sound.c \
                 sound.h \
                 synth_common.h \
                 synth_engine.c \
                 synth_engine.h \
                 synth_gui.c \
                 synth_gui.h \
                 synth_math.h \
                 wavetable.c \
                 wavetable.h

# -fwhole-program allows cross-file inlining, but only works when you put all
# the source files on one gcc command-line. -flto is another way to get the
# same effect. (Link-Time Optimization). clang supports -flto but not
# -fwhole-program.

# If your program doesn't depend on strict FP rounding
# behaviour, use -ffast-math. If it does, you can usually still use
# -fno-math-errno and stuff like that, without enabling
# -funsafe-math-optimizations. Some FP code can get big speedups from
# fast-math, like auto-vectorization.
AM_CFLAGS = -O3 -march=native -fno-math-errno -funroll-loops -flto -pthread

synth_SOURCES = synth.c $(common_sources)
synth_LDADD = -lportaudio -lrt -lm -lasound -lraylib -lportmidi -ljack -lfftw3f -lsndfile
#cookbook_SOURCES = cookbook.c $(common_sources)
#cookbook_SOURCES = cookbook.c $(common_sources)
#cook_SOURCES = cook.c $(common_sources)