From: Axel S. <as...@us...> - 2004-09-04 09:09:21
|
Update of /cvsroot/gtk2hs/gtk2hs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2835 Modified Files: ChangeLog Makefile Log Message: Moved the contents of MAKE_APPS to MAKE_DEMO which are not meant to be installed and only built on "make all". Index: Makefile =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/Makefile,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- Makefile 19 Aug 2004 07:54:18 -0000 1.33 +++ Makefile 4 Sep 2004 09:09:08 -0000 1.34 @@ -22,19 +22,19 @@ MAKE_LIBS += sourceview gconf endif -MAKE_APPS = demo/concurrent demo/treeList demo/graphic demo/unicode \ +MAKE_DEMOS = demo/concurrent demo/treeList demo/graphic demo/unicode \ demo/hello demo/buttonbox ifeq ($(GTK_VERSION_2_4),yes) -MAKE_APPS += demo/filechooser +# MAKE_DEMOS += demo/filechooser # uncomment when file is commited endif ifeq ($(strip $(ENABLE_LIBGLADE)),yes) -MAKE_APPS += demo/glade +MAKE_DEMOS += demo/glade endif ifeq ($(strip $(ENABLE_GNOME)),yes) -MAKE_APPS += demo/sourceview demo/gconf +MAKE_DEMOS += demo/sourceview demo/gconf endif EXTRA_DISTCLEANFILES = $(strip mk/config.mk mk/chsDepend config.status \ Index: ChangeLog =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v retrieving revision 1.227 retrieving revision 1.228 diff -u -d -r1.227 -r1.228 --- ChangeLog 4 Sep 2004 08:52:51 -0000 1.227 +++ ChangeLog 4 Sep 2004 09:09:08 -0000 1.228 @@ -1,3 +1,11 @@ +2004-09-04 Axel Simon <A....@ke...> + + * Makefile, mk/recurse.mk: Set MAKE_APPS to empty and introduce + MAKE_DEMOS. Demos are only built on "make all" not on "make + inplace". Demos are never installed, applications are. The latter + never did anything since mk/application.mk does not provide an + install target. + 2004-08-19 Jens Petersen <pet...@ha...> * configure.in (GHC_DOCDIR): Default to unset. |