CC=gcc
DEPS=internal-ascon.o internal-util.o ascon-aead.o
OUTS=test_permute test_128
%.o: %.c
	${CC} -o $@ -c $<

all: ${DEPS}
	${CC} -o test_permute main.c *.o
	${CC} -o test_128 test_128.c *.o

clean:
	rm *.o ${OUTS} 
