diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-02-12 08:15:31 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-02-12 08:15:31 +0000 |
commit | c80a7fd1d5b91dac9c7522a4afc11a8cccbf3ca6 (patch) | |
tree | 94490b243a604787f21c0244a7baef7774a3b364 /gtk/Makefile.am | |
parent | 80de78aaaddbc25ba810d09f19ffa150bdb53626 (diff) | |
download | wireshark-c80a7fd1d5b91dac9c7522a4afc11a8cccbf3ca6.tar.gz wireshark-c80a7fd1d5b91dac9c7522a4afc11a8cccbf3ca6.tar.bz2 wireshark-c80a7fd1d5b91dac9c7522a4afc11a8cccbf3ca6.zip |
The color stuff is almost completely toolkit-dependent (this isn't just
the color-selection and color-filter-editing GUI stuff; different
toolkits, and different windows systems, have their own notions of color
objects - they may have nothing in common other than the notion that
colors have red, green, and blue values); move it all to the "gtk"
subdirectory for now, and, as we discover stuff stuff that can be made
platform-independent, drag it up to the top-level directory.
svn path=/trunk/; revision=1621
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 6df80d6010..094e3a3ae2 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for the GTK interface routines for Ethereal # -# $Id: Makefile.am,v 1.22 2000/02/12 06:58:41 guy Exp $ +# $Id: Makefile.am,v 1.23 2000/02/12 08:15:30 guy Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@zing.org> @@ -31,6 +31,8 @@ CLEANFILES = \ libui_a_SOURCES = \ capture_dlg.c \ capture_dlg.h \ + colors.c \ + colors.h \ column_prefs.c \ column_prefs.h \ display_opts.c \ |