| 123456789101112131415161718192021 | TARGETS=client smtpall: $(TARGETS).c.o:  ptwist.h slitheen.h crypto.h	gcc -g -ggdb -c $< -o $@ -I../sslout/includeslitheen.o crypto.o ptwist168.o :: ptwist.h slitheen.h crypto.hclient: slitheen.o ptwist168.o crypto.o crypto.h ptwist.h slitheen.h	gcc -g -ggdb -o $@ $^ client.c -I../sslout/include -L../sslout/lib -lssl -lcrypto -ldl -lpthreadsmtp: slitheen.o ptwist168.o crypto.o crypto.h ptwist.h slitheen.h	gcc -g -ggdb -o $@ $^ smtpClient.c -I../sslout/include -L../sslout/lib -lssl -lcrypto -ldl -lpthreadclean:	-rm *.overyclean: clean	-rm $(TARGETS)
 |