
INC=../common

all: hebb vq kmeans art1 hopfield

hebb: hebb.c
	gcc -I$(INC) -o hebb -Wall hebb.c

vq: vq.c
	gcc -I$(INC) -o vq -Wall vq.c

kmeans: kmeans.c
	gcc -I$(INC) -o kmeans -Wall kmeans.c

art1: art1.c
	gcc -I$(INC) -o art1 -Wall art1.c

hopfield: hopfield.c
	gcc -I$(INC) -o hopfield -Wall hopfield.c

clean:
	rm -f *.exe hebb.exe vq.exe kmeans.exe art1.exe hopfield.exe
