Hi! > -$(FFSB): $(FFSBDIR) > - cd $^; ./configure > - $(MAKE) -C $^ -f "$(abs_srcdir)/$^/Makefile" all > - cp $(FFSBDIR)/ffsb ffsb > +unexport MAKEFLAGS > + > +$(FFSB): $(abs_srcdir)/$(FFSBDIR) > + mkdir -p $(FFSBDIR) > + cd $(FFSBDIR) && "$^/configure" && $(MAKE) all
The GNU Make manual suggests to use $(MAKE) all MAKEFLAGS= instead of the unexport, the rest looks ok. -- Cyril Hrubis [email protected] ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
