diff options
author | Marius Halden <marius.h@lden.org> | 2018-04-19 10:23:08 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2018-04-19 10:23:08 +0200 |
commit | db02ac8971379f9fee2f3a618bb08b8076d1a83d (patch) | |
tree | 0e7d46bad6162509300aa73ae6d77e571a5b26d0 /protocols/msn/Makefile | |
parent | 6dc54671e368d03ed447d0fbd2d662af6c36b7fd (diff) | |
parent | 246b98bbdf221448fd7a638fea04373ed1612de5 (diff) |
Merge branch 'master' into patched-master
Diffstat (limited to 'protocols/msn/Makefile')
-rw-r--r-- | protocols/msn/Makefile | 46 |
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 |