OBJS=cryptrc4.o rc4.o
CC=gcc
CFLAGS= -Wall


cryptrc4: $(OBJS) rc4.h
	$(CC) $(CFLAGS) $(OBJS) -o cryptrc4

clean:
	rm -f $(OBJS) cryptrc4
