
INC=../common

all: bestfs astar simanl tabus

bestfs: bestfs.c ../common/queue.c ../common/pqueue.c
	gcc -I$(INC) -o bestfs -Wall bestfs.c ../common/queue.c ../common/pqueue.c

tabus: tabus.c ../common/queue.c 
	gcc -I$(INC) -o tabus -Wall tabus.c ../common/queue.c

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

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

clean:
	rm -f *.exe 
