all: webserver webmux webserver: webserver.o tcp.o gcc webserver.o tcp.o -o webserver -g webmux: webmux.o tcp.o gcc webmux.o tcp.o -o webmux -g webserver.o: webserver.c gcc -Wall -g -c webserver.c -o webserver.o webmux.o: webmux.c gcc -Wall -g -c webmux.c -o webmux.o tcp.o: tcp.c tcp.h gcc -Wall -g -c tcp.c -o tcp.o clean: rm -f *.o webserver webmux