all: rijndael

rijndael: aes.c aes.h aestab.h aesxam.c Makefile
	gcc -static -O3 -o rijndael aes.c aesxam.c

clean:
	rm -rf *.o rijndael output*
