Updated the eaxLegacy plugin fixed error in makefile that saved the plugin as a .o instead of .so

This commit is contained in:
Raynaldo Rivera 2010-03-16 03:22:05 +00:00
parent 77874bacf5
commit d447e8d676
1 changed files with 1 additions and 1 deletions

View File

@ -6,4 +6,4 @@ OBJECT=main.o
LINK_OPTIONS=-shared -DCAUDIO_PLATFORM_LINUX
all: $(OBJECT)
$(CC) -o cAp_EAX_LegacyPreset.o $(OBJECT) $(LINK_OPTIONS) $(LDFLAGS)
$(CC) -o cAp_EAX_LegacyPreset.so $(OBJECT) $(LINK_OPTIONS) $(LDFLAGS)