> --- /dev/null > +++ b/fs/gfs2/Makefile > @@ -0,0 +1,42 @@ > +obj-$(CONFIG_GFS2_FS) += gfs2.o > +gfs2-y := \ > + acl.o \ > + bits.o \ > + bmap.o \ > + daemon.o \ ... + trans.o \ > + unlinked.o \ > + util.o A fewer number of lines please. gfs2-y := acl.o bits.o bmap.o ... gfs2-y += trans.o unlinked.o util.o > + > +obj-$(CONFIG_GFS2_FS_LOCKING_NOLOCK) += locking/nolock/ > +obj-$(CONFIG_GFS2_FS_LOCKING_DLM) += locking/dlm/ Can we get rid f the locking sub-directory - maybe like this: +obj-$(CONFIG_GFS2_FS_LOCKING_NOLOCK) += no-lock/ +obj-$(CONFIG_GFS2_FS_LOCKING_DLM += dlm-lock/ Sam - To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html