# CSOURCES = bfs.c memory_man.c
CSOURCES = full_bfs.c full_memory_man.c
OBJECTS = $(CSOURCES:.c=.o)
TARGET = $(firstword $(CSOURCES:.c=))

CFLAGS = -Wall -pedantic

$(TARGET): $(OBJECTS)

clean:
	rm -rf $(OBJECTS) $(TARGET)
