summaryrefslogtreecommitdiff
path: root/usr.bin/grep/grep.gpr
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/grep/grep.gpr')
-rw-r--r--usr.bin/grep/grep.gpr11
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;