
CC=gcc
OBJ=blowfish.o md5.o untt.o

untt: $(OBJ)
	$(CC) $^ -o $@

clean:
	rm -f *.o