You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
... to make sure that gps_cli and gnatdoc can be invoked without having to set LD_LIBRARY_PATH or use a wrapper. (Makefile.in): make clean should also clean up in cli. (cli/Makefile): add target 'clean' (cli/cli.gpr): do not import Shared linker switches, not needed, and unnecessarily drag the clang dll. Move the import of libclang from kernel_core to kernel. Move the gtk+ C switches from shared.gpr to widgets.gpr, since they are only useful there. For O924-012. Change-Id: Id0df3473d968d1f539886f3041cd6c64e11a1e06
9 lines
105 B
Makefile
9 lines
105 B
Makefile
GPRBUILD=gprbuild
|
|
GPRCLEAN=gprclean
|
|
|
|
all default:
|
|
$(GPRBUILD) -p -Pcli
|
|
|
|
clean:
|
|
$(GPRCLEAN) -q -r -Pcli
|