diff options
author | dequis <dx@dxzone.com.ar> | 2016-11-19 04:59:14 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2016-11-19 04:59:14 -0300 |
commit | a7baf40947fe0904285a6f532850b51902da191c (patch) | |
tree | af9703e477ee449f969bfb7cc740633cebe1aad5 /protocols/yahoo/Makefile | |
parent | b4f496e7e9a22768f76c13b96deb1997bab55414 (diff) |
Remove yahoo (the old protocol). Use funyahoo++ instead.
RIP
The previous commit already handled the part of telling users.
Diffstat (limited to 'protocols/yahoo/Makefile')
-rw-r--r-- | protocols/yahoo/Makefile | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/protocols/yahoo/Makefile b/protocols/yahoo/Makefile deleted file mode 100644 index 8ac73e49..00000000 --- a/protocols/yahoo/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -########################### -## Makefile for BitlBee ## -## ## -## Copyright 2002 Lintux ## -########################### - -### DEFINITIONS - --include ../../Makefile.settings -ifdef _SRCDIR_ -_SRCDIR_ := $(_SRCDIR_)protocols/yahoo/ -endif - -# [SH] Program variables -objects = yahoo.o libyahoo2.o yahoo_httplib.o yahoo_util.o - -CFLAGS += -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB -LFLAGS += -r - -# [SH] Phony targets -all: yahoo_mod.o -check: all -lcov: check -gcov: - gcov *.c - -.PHONY: all clean distclean - -clean: - rm -f *.o core - -distclean: clean - rm -rf .depend - -### MAIN PROGRAM - -$(objects): ../../Makefile.settings Makefile - -$(objects): %.o: $(_SRCDIR_)%.c - @echo '*' Compiling $< - @$(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@ - -yahoo_mod.o: $(objects) - @echo '*' Linking yahoo_mod.o - @$(LD) $(LFLAGS) $(objects) -o yahoo_mod.o - --include .depend/*.d |