diff options
author | Florian Jung <flo@thinkpad.(none)> | 2010-12-31 16:41:51 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2010-12-31 16:41:51 +0100 |
commit | ccdcc87d03f289b1b7774aa91484dde5b118cb01 (patch) | |
tree | 0a723b8feb47eae89265d9c845fba0cb3f5043c8 /synth | |
parent | 4f87806616587c77db352f701ec93410060b5dba (diff) |
Fix Makefile
Makefile used CFLAGS instead of CXXFLAGS, which has been fixed.
Diffstat (limited to 'synth')
-rw-r--r-- | synth/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/synth/Makefile b/synth/Makefile index 75c49d3..f84441c 100644 --- a/synth/Makefile +++ b/synth/Makefile @@ -1,8 +1,9 @@ CXX=g++ -CXXFLAGS=-Wall -g +CFLAGS=-Wall -g +CXXFLAGS=$(CFLAGS) LDFLAGS=-lm `pkg-config --cflags --libs jack` -OBJ=channel.o cli.o defines.o envelope.o filter.o globals.o jack.o load.o main.o note.o parser.o programs.o readwave.o util.o +OBJ=channel.o cli.o defines.o envelope.o filter.o globals.o jack.o load.o main.o note.o note_skel.o parser.o programs.o readwave.o util.o BIN=synth DEPENDFILE = .depend |