summary refs log tree commit diff stats
path: root/plugins/fishlim/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/fishlim/Makefile')
-rw-r--r--plugins/fishlim/Makefile6
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 $@