From: Axel S. <as...@us...> - 2004-11-28 22:17:35
|
Update of /cvsroot/gtk2hs/gtk2hs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11125 Modified Files: Makefile.am Log Message: Touching a non-existent _stub.o file is not enough. Build an empty one. Index: Makefile.am =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/Makefile.am,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Makefile.am 28 Nov 2004 21:55:11 -0000 1.10 +++ Makefile.am 28 Nov 2004 22:17:26 -0000 1.11 @@ -333,7 +333,8 @@ gtk/treeList/TreeModel_stub.o gtk/general/Signal_stub.o \ gtk/treeList/TreeSelection_stub.o gtk/glib/GObject_stub.o \ gtk/treeList/TreeView_stub.o: - touch $@ + touch $(@:.o=.c) + $(CC) -c -o $@ $(@:.o=.c) am_libgtk2hs_a_OBJECTS = \ |