Files
gprbuild/examples/matrix/Makefile
Vasiliy Fofanov 6bfbcf421b examples: improve Makefiles, mostly style issues
This comes from GitHub PR #115
no-tn-check

Change-Id: Ib11da9355a3e7a59d0d1f81ddfb9c1311fd9fc38
2022-08-08 13:49:16 +02:00

15 lines
237 B
Makefile

all: default.cgpr
gprbuild -p -Pmatrix $(GPRBUILDFLAGS)
default.cgpr:
gprconfig --batch --config Ada --config C --config Fortran
clean: default.cgpr
gprclean -Pmatrix
$(RM) default.cgpr
run: all
./obj/main
.PHONY: all clean run