X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=Ada95%2Fsrc%2Flibrary.gpr.sed;fp=Ada95%2Fsrc%2Flibrary.gpr;h=28b0b1cd869322738d378b015aa7c725862d176c;hb=34d602f272c394e9a980438e636e1ce4d355f83b;hp=33e4a3c7d7e2ead8129127272043720d1a81e359;hpb=c9c32236e27689a61c794b714c6b86c460866e35;p=ncurses.git diff --git a/Ada95/src/library.gpr b/Ada95/src/library.gpr.sed similarity index 79% rename from Ada95/src/library.gpr rename to Ada95/src/library.gpr.sed index 33e4a3c7..28b0b1cd 100644 --- a/Ada95/src/library.gpr +++ b/Ada95/src/library.gpr.sed @@ -1,5 +1,5 @@ ------------------------------------------------------------------------------ --- Copyright (c) 2010,2011 Free Software Foundation, Inc. -- +-- Copyright (c) 2010-2011,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- @@ -25,32 +25,32 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ --- $Id: library.gpr,v 1.7 2011/03/18 23:10:28 Nicolas.Boulenguez Exp $ +-- $Id: library.gpr.sed,v 1.2 2014/05/24 21:28:29 tom Exp $ -- http://gcc.gnu.org/onlinedocs/gnat_ugn_unw/Library-Projects.html -- http://www.adaworld.com/debian/debian-ada-policy.html project Library is Build_Dir := External ("BUILD_DIR"); - Source_Dir := External ("SOURCE_DIR"); - Source_Dir2 := External ("SOURCE_DIR2"); - Kind := External ("LIB_KIND"); for Library_Name use External ("LIB_NAME"); for Library_Version use External ("SONAME"); - - for Library_Kind use Kind; + for Library_Kind use "dynamic"; for Library_Dir use Build_Dir & "/lib"; - for Object_Dir use Build_Dir & "/" & Kind & "-obj"; - for Library_ALI_Dir use Build_Dir & "/" & Kind & "-ali"; - for Source_Dirs use (Source_Dir & "/src", - Source_Dir2, - Build_Dir & "/src"); - for Library_Options use ("-lncurses", "-lpanel", "-lmenu", "-lform"); + for Object_Dir use Build_Dir & "/dynamic-obj"; + for Library_ALI_Dir use Build_Dir & "/dynamic-ali"; + for Source_Dirs use ("."); + for Library_Options use + External_As_List ("LDFLAGS", " ") -- before libraries. + & ("-lncurses", "-lpanel", "-lmenu", "-lform"); package Compiler is for Default_Switches ("Ada") use ("-g", "-O2", "-gnatafno", "-gnatVa", -- All validity checks - "-gnatwa"); -- Activate all optional errors + "-gnatwa") -- Activate all optional errors + & External_As_List ("ADAFLAGS", " "); -- after default options end Compiler; + + -- gnatmake ignores C sources, but this option will let it embed + -- objects found in the Object_Dir. for Languages use ("C", "Ada"); end Library;