summaryrefslogtreecommitdiff
path: root/src/SConscript
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2010-04-25 07:44:30 -0700
committerDaniel Burrows <dburrows@debian.org>2010-04-25 07:44:30 -0700
commit840f74c17c138108e295d084ae5a06be98feb99d (patch)
treeacbd1718539c96a3f4ea5f2192609fab611ef725 /src/SConscript
parent1c8ce5375ae4af5635794cc8a5ced83388dcf374 (diff)
downloadaptitude-840f74c17c138108e295d084ae5a06be98feb99d.tar.gz
Add a "programs" dummy target that builds just the programs in src/.
I originally was going to have an "aptitude" target that builds aptitude, but scons doesn't like having an alias that matches the basename of a real target.
Diffstat (limited to 'src/SConscript')
-rw-r--r--src/SConscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/SConscript b/src/SConscript
index 3123f8bc..a465e197 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -121,4 +121,6 @@ if programs_env.IsVariantActive('gtk'):
Copy('$TARGET', '$SOURCE'))
programs_env.Requires(aptitude, aptitude_glade)
+programs_env.Alias('programs', aptitude)
+
Return('aptitude')