aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/msn/Makefile')
-rw-r--r--protocols/msn/Makefile46
1 files changed, 0 insertions, 46 deletions
diff --git a/protocols/msn/Makefile b/protocols/msn/Makefile
deleted file mode 100644
index 089297f6..00000000
--- a/protocols/msn/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-###########################
-## Makefile for BitlBee ##
-## ##
-## Copyright 2002 Lintux ##
-###########################
-
-### DEFINITIONS
-
--include ../../Makefile.settings
-ifdef _SRCDIR_
-_SRCDIR_ := $(_SRCDIR_)protocols/msn/
-endif
-
-# [SH] Program variables
-objects = msn.o msn_util.o ns.o soap.o tables.o gw.o
-
-LFLAGS += -r
-
-# [SH] Phony targets
-all: msn_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 $<
- $(VERBOSE) $(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@
-
-msn_mod.o: $(objects)
- @echo '*' Linking msn_mod.o
- $(VERBOSE) $(LD) $(LFLAGS) $(objects) -o msn_mod.o
-
--include .depend/*.d