CC=gcc
DEPS=aead-random.o ascon-aead-masked.o internal-ascon-m2.o internal-util.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} 
