#
# Makefile for Portjig Library of Programs 
#
CC=gcc

all: tcp udp

tcp: tcp.c
	$(CC) -o tcp tcp.c

udp: udp.c
	$(CC) -o udp udp.c

