Files
gpr/examples/gprbuild/ada_cpp/Makefile
Jerome Lambourg 76c10c296d Add the examples from the gprbuild repository
Adjust the project files to properly install them in share/doc

For eng/gpr/gpr-issues#548
2025-03-10 16:16:29 +00:00

19 lines
296 B
Makefile

all: default.cgpr
gprbuild -Panimals $(GPRBUILDFLAGS)
gprbuild -Pexcept $(GPRBUILDFLAGS)
default.cgpr:
gprconfig --batch --config Ada --config C++
clean: default.cgpr
gprclean -Panimals
gprclean -Pexcept
$(RM) default.cgpr
run: all
./ada_main
./cpp_main
./main
.PHONY: all clean run