diff -Nur -X/mnt/data/freeciv-dev/freeciv/diff_ignore freeciv/client/Makefile.am codeciv/client/Makefile.am --- freeciv/client/Makefile.am Tue Jul 3 15:45:22 2001 +++ codeciv/client/Makefile.am Tue Jul 3 16:14:52 2001 @@ -19,6 +19,9 @@ if CLIENT_GUI_WIN32 GUI_SUBDIR = gui-win32 endif +if CLIENT_GUI_MUI +GUI_SUBDIR = gui-mui +endif ## This is usually false, so "include" is not recursed into ## by 'make', but it can be enabled in configure, and it is diff -Nur -X/mnt/data/freeciv-dev/freeciv/diff_ignore freeciv/client/gui-mui/Makefile.am codeciv/client/gui-mui/Makefile.am --- freeciv/client/gui-mui/Makefile.am Thu Jan 1 01:00:00 1970 +++ codeciv/client/gui-mui/Makefile.am Tue Jul 3 16:20:42 2001 @@ -0,0 +1,66 @@ +## Process this file with automake to produce Makefile.in + +EXTRA_DIST = \ + autogroupclass.c \ + autogroupclass.h \ + chatline.c \ + chatline.h \ + citydlg.c \ + citydlg.h \ + cityrep.c \ + cityrep.h \ + colors.c \ + colors.h \ + colortextclass.c \ + colortextclass.h \ + connectdlg.c \ + connectdlg.h \ + dialogs.c \ + dialogs.h \ + diplodlg.c \ + diplodlg.h \ + finddlg.c \ + gamedlgs.c \ + gotodlg.c \ + gotodlg.h \ + graphics.c \ + graphics.h \ + gui_main.c \ + gui_main.h \ + helpdlg.c \ + helpdlg.h \ + historystringclass.c \ + historystringclass.h \ + inputdlg.c \ + inputdlg.h \ + inteldlg.c \ + mapclass.c \ + mapclass.h \ + mapctrl.c \ + mapctrl.h \ + mapview.c \ + mapview.h \ + messagedlg.c \ + messagewin.c \ + messagewin.h \ + muistuff.c \ + muistuff.h \ + objecttreeclass.c \ + objecttreeclass.h \ + optiondlg.h \ + overviewclass.c \ + overviewclass.h \ + plrdlg.c \ + plrdlg.h \ + repodlgs.c \ + repodlgs.h \ + scrollbuttonclass.c \ + scrollbuttonclass.h \ + spaceshipdlg.c \ + spaceshipdlg.h \ + transparentstringclass.c \ + transparentstringclass.h \ + wldlg.c \ + wldlg.h \ + worklistclass.c \ + worklistclass.h diff -Nur -X/mnt/data/freeciv-dev/freeciv/diff_ignore freeciv/configure.in codeciv/configure.in --- freeciv/configure.in Tue Jul 3 15:45:03 2001 +++ codeciv/configure.in Tue Jul 3 16:15:32 2001 @@ -364,6 +364,7 @@ AM_CONDITIONAL(CLIENT_GUI_BEOS, test "$gui_sources" = "gui-beos") AM_CONDITIONAL(CLIENT_GUI_STUB, test "$gui_sources" = "gui-stub") AM_CONDITIONAL(CLIENT_GUI_WIN32, test "$gui_sources" = "gui-win32") +AM_CONDITIONAL(CLIENT_GUI_MUI, test "$gui_sources" = "gui-mui") dnl Checks for additional server libraries: if test x$server = xtrue; then @@ -655,6 +656,7 @@ client/include/Makefile client/gui-gtk/Makefile client/gui-xaw/Makefile + client/gui-mui/Makefile client/gui-win32/Makefile client/gui-stub/Makefile server/Makefile