all : tunnel_server tunnel_client tunnel_host tunnel_server : tunnel_server.c gcc -o $@ $^ -Os -g tunnel_client : tunnel_client.c gcc -o $@ $^ -Os -g tunnel_host : tunnel_host.c gcc -o $@ $^ -Os -g clean : rm -rf *~ *.o tunnel_server tunnel_client tunnel_host