diff options
Diffstat (limited to 'usr.bin/grep')
-rw-r--r-- | usr.bin/grep/grep.gpr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.bin/grep/grep.gpr b/usr.bin/grep/grep.gpr new file mode 100644 index 0000000..c0286d2 --- /dev/null +++ b/usr.bin/grep/grep.gpr @@ -0,0 +1,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; |