]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blob - Makefile
tlsproxy.c: Free resources when receiving SIGINT.
[tlsproxy/tlsproxy.git] / Makefile
1 all: tlsproxy
2
3
4 tlsproxy: tlsproxy.c
5         gcc -Wall -Wextra -DDEBUG -o tlsproxy $^
6
7 clean:
8         rm -f tlsproxy
9
10 .PHONY: all clean