mirror of
https://github.com/AdaCore/gpr.git
synced 2026-02-12 12:58:39 -08:00
Adjust the project files to properly install them in share/doc For eng/gpr/gpr-issues#548
19 lines
296 B
Makefile
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
|