CC=gcc
CFLAGS=-Wall -O2 -g

all: utftpd

utftpd: utftpd.o

clean:
	rm -f *.o *~ utftpd

