CC = gcc
CFLAGS = -O3 -Wall
LIBS = encrypt.o
BINS = test


all: bin

bin: encrypt.o test

test: encrypt.o test.c

clean:
	rm -f $(LIBS) $(BINS) core

encrypt.o: encrypt.c
compress.o: compress.c
