EXEEXT=.exe
OBJS = ar.o io.o encode.o decode.o maketree.o maketbl.o huf.o
TARGET = olha$(EXEEXT)

$(TARGET): $(OBJS)
	$(CC) $(CFLAGS) $^ -o $@

clean:
	$(RM) $(OBJS) $(TARGET)
