diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-11-25 10:24:33 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-11-25 10:24:33 +0100 |
commit | 81ed389e71cda96c1bd5935dd5f9cb98327870ce (patch) | |
tree | af69e7a16110b55046cc36982be6c94fc26fcbd5 /plugins/fishlim/Makefile | |
parent | 3067b7b267d881963498d277d657e679ac15af45 (diff) |
get in sync with fishlim upstream
Diffstat (limited to 'plugins/fishlim/Makefile')
-rw-r--r-- | plugins/fishlim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/fishlim/Makefile b/plugins/fishlim/Makefile index 7a5081e4..a1832c84 100644 --- a/plugins/fishlim/Makefile +++ b/plugins/fishlim/Makefile @@ -4,17 +4,17 @@ OURCFLAGS = -Wall -Wextra -Wno-unused-parameter -std=c99 -pedantic `pkg-config - OURLINKFLAGS = `pkg-config --libs glib-2.0 libcrypto` $(CFLAGS) $(LDFLAGS) BASE_OBJECTS = irc.o fish.o keystore.o misc.o -PLUGIN_OBJECTS = $(BASE_OBJECTS) xchat_plugin.o +PLUGIN_OBJECTS = $(BASE_OBJECTS) plugin_xchat.o TEST_OBJECTS = $(BASE_OBJECTS) test.o all: fishlim.so test fish.o: fish.h keystore.h misc.h irc.o: irc.h -keystore.o: keystore.h irc.h fish.h misc.h +keystore.o: keystore.h irc.h fish.h misc.h plugin_xchat.h misc.o: misc.h test.o: fish.h -xchat_plugin.o: fish.h irc.h keystore.h +plugin_xchat.o: fish.h irc.h keystore.h plugin_xchat.h .c.o: $(CC) $(OURCFLAGS) -c $< -o $@ |