Patch from Tom <tom@stosb.com> to add comments about which page in the

wizard is responsible for what.



SVN revision: 43824
This commit is contained in:
Christopher Michael 2009-11-20 16:12:16 +00:00
parent fc32efb988
commit 303ef9548e
7 changed files with 13 additions and 0 deletions

View File

@ -41,21 +41,25 @@ module_la_LIBADD = @e_libs@ @dlopen_libs@
module_la_LDFLAGS = -module -avoid-version
module_la_DEPENDENCIES = $(top_builddir)/config.h
#Splash screen
page_000_la_SOURCES = page_000.c
page_000_la_LIBADD = @e_libs@ @dlopen_libs@
page_000_la_LDFLAGS = -module -avoid-version
page_000_la_DEPENDENCIES = $(top_builddir)/config.h
#Choose language
page_010_la_SOURCES = page_010.c
page_010_la_LIBADD = @e_libs@ @dlopen_libs@
page_010_la_LDFLAGS = -module -avoid-version
page_010_la_DEPENDENCIES = $(top_builddir)/config.h
#Choose Profile
page_020_la_SOURCES = page_020.c
page_020_la_LIBADD = @e_libs@ @dlopen_libs@
page_020_la_LDFLAGS = -module -avoid-version
page_020_la_DEPENDENCIES = $(top_builddir)/config.h
#Choose Menus
page_030_la_SOURCES = page_030.c
page_030_la_LIBADD = @e_libs@ @dlopen_libs@
page_030_la_LDFLAGS = -module -avoid-version
@ -76,11 +80,13 @@ page_030_la_DEPENDENCIES = $(top_builddir)/config.h
#page_060_la_LDFLAGS = -module -avoid-version
#page_060_la_DEPENDENCIES = $(top_builddir)/config.h
#Choose appliactions
page_070_la_SOURCES = page_070.c
page_070_la_LIBADD = @e_libs@ @dlopen_libs@
page_070_la_LDFLAGS = -module -avoid-version
page_070_la_DEPENDENCIES = $(top_builddir)/config.h
#Choose quick launch
page_080_la_SOURCES = page_080.c
page_080_la_LIBADD = @e_libs@ @dlopen_libs@
page_080_la_LDFLAGS = -module -avoid-version

View File

@ -1,6 +1,8 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
/* Splash Screen */
#include "e.h"
#include "e_mod_main.h"

View File

@ -1,6 +1,7 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
/* Language chooser */
#include "e.h"
#include "e_mod_main.h"

View File

@ -1,6 +1,7 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
/* Profile chooser */
#include "e.h"
#include "e_mod_main.h"

View File

@ -1,6 +1,7 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
/* Menu chooser */
#include "e.h"
#include "e_mod_main.h"

View File

@ -1,6 +1,7 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
/* Adding application icons */
#include "e.h"
#include "e_mod_main.h"

View File

@ -1,6 +1,7 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
/* Quick launch chooser */
#include "e.h"
#include "e_mod_main.h"