CC = i386-aros-gcc

all: test sha2.o

sha2.o:
	$(CC) -c sha2.c

test: sha2test sha2str

sha2test:
	$(CC) sha2test.c -o sha2test
sha2str:
	$(CC) sha2str.c  -o sha2str

