diff options
Diffstat (limited to 'protocols/msn/Makefile')
-rw-r--r-- | protocols/msn/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/protocols/msn/Makefile b/protocols/msn/Makefile new file mode 100644 index 00000000..e6620323 --- /dev/null +++ b/protocols/msn/Makefile @@ -0,0 +1,39 @@ +########################### +## Makefile for BitlBee ## +## ## +## Copyright 2002 Lintux ## +########################### + +### DEFINITIONS + +-include ../../Makefile.settings + +# [SH] Program variables +objects = msn.o msn_util.o ns.o passport.o sb.o tables.o + +CFLAGS += -Wall +LFLAGS += -r + +# [SH] Phony targets +all: msnn.o + +.PHONY: all clean distclean + +clean: + rm -f *.o core + +distclean: clean + +### MAIN PROGRAM + +$(objects): ../../Makefile.settings Makefile + +$(objects): %.o: %.c + @echo '*' Compiling $< + @$(CC) -c $(CFLAGS) $< -o $@ + +msnn.o: $(objects) + @echo '*' Linking msnn.o + @$(LD) $(LFLAGS) $(objects) -o msnn.o + + |