diff options
Diffstat (limited to 'src/makefile_linux')
-rw-r--r-- | src/makefile_linux | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/makefile_linux b/src/makefile_linux index 373e9b7..6948b3d 100644 --- a/src/makefile_linux +++ b/src/makefile_linux @@ -2,14 +2,16 @@ current: all .SUFFIXES: .pd_linux -INCLUDE = -I. -I/usr/local/src/pd/src +PD_INCLUDE=/usr/local/src/pd/src + +INCLUDE = -I. -I$(PD_INCLUDE) LDFLAGS = -export-dynamic -shared LIB = -ldl -lm #select either the DBG and OPT compiler flags below: -CFLAGS = -DPD -DUNIX -W -Werror -Wno-unused \ +CFLAGS = -DPD -DUNIX -W -Wno-unused \ -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing \ -DDL_OPEN -fPIC |