From 1d3c6d672eaa8d97fa24f52b14efc9ec79d71929 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Wed, 18 Jul 2012 10:51:22 +0200 Subject: Add make support for FiSHLiM on Unix --- plugins/fishlim/Makefile | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 plugins/fishlim/Makefile (limited to 'plugins/fishlim/Makefile') diff --git a/plugins/fishlim/Makefile b/plugins/fishlim/Makefile deleted file mode 100644 index 3f0e93d2..00000000 --- a/plugins/fishlim/Makefile +++ /dev/null @@ -1,40 +0,0 @@ - -OURCFLAGS = -Wall -Wextra -Wno-unused-parameter -std=c99 -pedantic `pkg-config --cflags glib-2.0 libcrypto` -DG_DISABLE_DEPRECATED=1 -fPIC $(CFLAGS) -#OURLINKFLAGS = `pkg-config --libs glib-2.0 libcrypto` -shared -fPIC -Wl,-z,defs $(CFLAGS) $(LDFLAGS) -OURLINKFLAGS = `pkg-config --libs glib-2.0 libcrypto` $(CFLAGS) $(LDFLAGS) - -BASE_OBJECTS = irc.o fish.o keystore.o misc.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 plugin_xchat.h -misc.o: misc.h -test.o: fish.h -plugin_xchat.o: fish.h irc.h keystore.h plugin_xchat.h - -.c.o: - $(CC) $(OURCFLAGS) -c $< -o $@ - -fishlim.so: $(PLUGIN_OBJECTS) - $(CC) -shared $(OURLINKFLAGS) $(PLUGIN_OBJECTS) -o $@ - -test: $(TEST_OBJECTS) - $(CC) $(TEST_OBJECTS) -o $@ $(OURLINKFLAGS) - - -.PHONY: all clean distclean install uninstall -clean: - -$(RM) -f $(PLUGIN_OBJECTS) $(TEST_OBJECTS) fishlim.so test -distclean: clean - -install: fishlim.so - install -d $(DESTDIR)/usr/lib/xchat/plugins/ - install -m 644 fishlim.so $(DESTDIR)/usr/lib/xchat/plugins/ -uninstall: - rm $(DESTDIR)/usr/lib/xchat/plugins/fishlim.so - - -- cgit 1.4.1