summaryrefslogtreecommitdiff
path: root/usr.bin/grep/grep.gpr
blob: c0286d2347c83edce99e016e7077d71b67acb051 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
project grep extends "template/usr_bin.gpr" is

   for Main use (project'Name);
   for Object_Dir use External ("BUILDROOT") & "/" & project'Name;

   package Linker is
      for Trailing_Switches ("C") use
         bin.Linker'Trailing_Switches("C") & ("-lbz2", "-lfts", "-lz");
   end Linker;

end grep;