diff options
author | waker <wakeroid@gmail.com> | 2010-12-04 16:03:24 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2010-12-04 16:03:24 +0100 |
commit | 615764a283c7d978eca67e6498efa272d634c391 (patch) | |
tree | 8024b68e02193e1cce63934aaac1b46ca4c08ab8 | |
parent | f7530c6302efde3300fe48644153805e777af92a (diff) |
makefile fixes
-rw-r--r-- | plugins/ao/Makefile | 4 | ||||
-rw-r--r-- | plugins/dumb/Makefile | 4 | ||||
-rw-r--r-- | plugins/shn/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/ao/Makefile b/plugins/ao/Makefile index 953da86d..0714690c 100644 --- a/plugins/ao/Makefile +++ b/plugins/ao/Makefile @@ -4,9 +4,9 @@ CC=gcc ZLIB_LIBS=-lz -CFLAGS=-Wall -DPATH_MAX=1024 -DHAS_PSXCPU=1 -I../.. -I./ -Ieng_ssf -Ieng_qsf -Ieng_dsf +CFLAGS+=-Wall -DPATH_MAX=1024 -DHAS_PSXCPU=1 -I../.. -I./ -Ieng_ssf -Ieng_qsf -Ieng_dsf -LDFLAGS=-module -shared -fPIC $(ZLIB_LIBS) -lm +LDFLAGS+=-module -shared -fPIC $(ZLIB_LIBS) -lm SOURCES=plugin.c main.c corlett.c\ eng_dsf/eng_dsf.c eng_dsf/dc_hw.c eng_dsf/aica.c eng_dsf/aicadsp.c eng_dsf/arm7.c eng_dsf/arm7i.c\ diff --git a/plugins/dumb/Makefile b/plugins/dumb/Makefile index 0e983a56..138e4161 100644 --- a/plugins/dumb/Makefile +++ b/plugins/dumb/Makefile @@ -2,9 +2,9 @@ CC=gcc dumbpath=dumb-kode54 -CFLAGS=-Wall -I$(dumbpath)/include -std=c99 +CFLAGS+=-Wall -I$(dumbpath)/include -std=c99 -LDFLAGS=-module -shared -fPIC -lm +LDFLAGS+=-module -shared -fPIC -lm SOURCES=\ dumb-kode54/src/it/readam.c\ diff --git a/plugins/shn/Makefile b/plugins/shn/Makefile index a87ac1ec..f60ea3bd 100644 --- a/plugins/shn/Makefile +++ b/plugins/shn/Makefile @@ -2,9 +2,9 @@ OUT=shn.so CC=gcc -CFLAGS=-Wall -std=c99 -D_GNU_SOURCE -DHAVE_CONFIG_H -I. -I../.. +CFLAGS+=-Wall -std=c99 -D_GNU_SOURCE -DHAVE_CONFIG_H -I. -I../.. -LDFLAGS=-module -shared -fPIC -lm +LDFLAGS+=-module -shared -fPIC -lm SOURCES=array.c convert.c misc.c output.c seek.c shn.c shorten.c sulawalaw.c vario.c wave.c |