I'm trying to make a Makefile for my program. It is so difficult because i've read a lot of guide but none is clear. I have 3 files : main.c , library.c , library.h . Main.c and library.c depend on library.h . The structure of my directory project is formed by :
MyProject directory -> Build directory and Exercise1 directory -> all of my files . In compiler I wrote make and it compiled ; then when I write  make execute command, it gives me this error:
cd ../build; ./test
Error: No such file or directory
makefile:23: recipe for target 'execute' failed
make: *** [execute] Error 1
MAKEFILE
CC=gcc
CFLAGS=-Wall
ODIR=../build
DIR = build
.PHONY: all
all: main.o library.o test
$(ODIR)/%.o: %.c $(DEPS)
    $(CC) -std=c99 -c -o $@ $< $(CFLAGS)
library.o: library.c library.h
    $(CC) -std=c99 -c -o $(ODIR)/$@ $< $(CFLAGS)
main.o: main.c library.h
    $(CC) -std=c99 -c -o $(ODIR)/$@ $< $(CFLAGS)
test: $(ODIR)/library.o $(ODIR)/main.o
    $(CC) -std=c99 -o $(ODIR)/$@ $^ $(CFLAGS)
execute:
    cd $(ODIR); ./test
clean:
    rm -f $(ODIR)/*.o
 
    