diff options
author | Daniel Burrows <dburrows@debian.org> | 2011-04-02 11:10:01 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2011-04-02 11:10:01 -0700 |
commit | 9343b6214a41e831a501ef7ce7b6981859445baa (patch) | |
tree | 2ac87048f274a8e7da2a93fd8fa2e8136ce165b7 /src/gtk | |
parent | de851905685f3b874fee0978587e406e83c697a0 (diff) | |
download | aptitude-9343b6214a41e831a501ef7ce7b6981859445baa.tar.gz |
Nuke the scons build scripts.
These never worked out as well as I intended, and all indications
were that they would be a maintenance burden...or just bitrot.
Fully parallel builds are nice, but my builds are pretty quick on
my 8-core box even with the artificial chokepoints that automake
induces.
Diffstat (limited to 'src/gtk')
-rw-r--r-- | src/gtk/SConscript | 76 | ||||
-rw-r--r-- | src/gtk/toplevel/SConscript | 17 | ||||
-rw-r--r-- | src/gtk/util/SConscript | 9 | ||||
-rw-r--r-- | src/gtk/view-impls/SConscript | 10 |
4 files changed, 0 insertions, 112 deletions
diff --git a/src/gtk/SConscript b/src/gtk/SConscript deleted file mode 100644 index 23e456e6..00000000 --- a/src/gtk/SConscript +++ /dev/null @@ -1,76 +0,0 @@ -Import('programs_env') - -toplevel_srcs = map(File, [ - 'areas.cc', - 'areas.h', - 'changelog.cc', - 'changelog.h', - 'constants.h', - 'dashboardtab.cc', - 'dashboardtab.h', - 'dependency_chains_tab.cc', - 'dependency_chains_tab.h', - 'download.cc', - 'download.h', - 'dpkg_terminal.cc', - 'dpkg_terminal.h', - 'entitysummary.cc', - 'entitysummary.h', - 'entityview.cc', - 'entityview.h', - 'errortab.cc', - 'errortab.h', - 'filesview.cc', - 'filesview.h', - 'globals.cc', - 'globals.h', - 'gui.cc', - 'gui.h', - 'hyperlink.cc', - 'hyperlink.h', - 'info.cc', - 'info.h', - 'init.cc', - 'init.h', - 'mainwindow.cc', - 'mainwindow.h', - 'notify.cc', - 'notify.h', - 'packageinformation.cc', - 'packageinformation.h', - 'packagestab.cc', - 'packagestab.h', - 'pkgview.cc', - 'pkgview.h', - 'post_event.cc', - 'post_event.h', - 'previewtab.cc', - 'previewtab.h', - 'progress.cc', - 'progress.h', - 'resolver.cc', - 'resolver.h', - 'screenshot.cc', - 'screenshot.h', - 'screenshot_cache.cc', - 'screenshot_cache.h', - 'tab.cc', - 'tab.h', - 'treeview_cell_tooltips.cc', - 'treeview_cell_tooltips.h', - ]) - -sub_srcs = SConscript(dirs = [ - 'toplevel', - 'util', - 'view-impls', - ]) - -srcs = (toplevel_srcs, sub_srcs) - -# Distribute the build files. -programs_env.Dist('Makefile.am', 'SConscript') - -programs_env.Dist('aptitude.glade') - -Return('srcs') diff --git a/src/gtk/toplevel/SConscript b/src/gtk/toplevel/SConscript deleted file mode 100644 index e9f8b514..00000000 --- a/src/gtk/toplevel/SConscript +++ /dev/null @@ -1,17 +0,0 @@ -Import('programs_env') - -toplevel_srcs = map(File, [ - 'model.cc', - 'model.h', - 'sidebar.h', - 'tabs_notebook.cc', - 'tabs_notebook.h', - 'view.h' - ]) - -srcs = toplevel_srcs - -# Distribute the build files. -programs_env.Dist('Makefile.am', 'SConscript') - -Return('srcs') diff --git a/src/gtk/util/SConscript b/src/gtk/util/SConscript deleted file mode 100644 index 37c27e8a..00000000 --- a/src/gtk/util/SConscript +++ /dev/null @@ -1,9 +0,0 @@ -Import('programs_env') - -srcs = map(File, [ - 'property.h', - ]) - -programs_env.Dist('Makefile.am', 'SConscript') - -Return('srcs') diff --git a/src/gtk/view-impls/SConscript b/src/gtk/view-impls/SConscript deleted file mode 100644 index 17412c23..00000000 --- a/src/gtk/view-impls/SConscript +++ /dev/null @@ -1,10 +0,0 @@ -Import('programs_env') - -srcs = map(File, [ - 'search_input_entry.cc', - 'search_input_entry.h', - ]) - -programs_env.Dist('Makefile.am', 'README', 'SConscript') - -Return('srcs') |