all: msnshell

CC=gcc

msnshell:
	$(CC) -g msnshell.c net.c md5.c debug.c -o msnshell -lpthread -lcrypt

clean:
	-rm msnshell

