# USAGE: make [install|clean]

# -------- VARIABLE --------

OBJ=hclustering.tgz
DEP=abims_hclustering.r abims_hclustering.xml static


# ------------------------

all: $(OBJ)

$(OBJ): $(DEP)
	tar --exclude=".svn" -zchf $@ $^

# ------------------------

install: $(OBJ)
	mv *.tgz ~

clean:
	rm *.tgz

