On Thu, 19 Mar 2009 16:59:58 +0100 Christoph Scheurer <[email protected]> wrote:
> > REMIND_INCLUDES = $(wildcard *) > > > > main: $(filter-out $@, $(REMIND_INCLUDES)) > > @touch $@ > > > > This works but I am still getting the above error. > Sorry, my mistake, $@ is substituted later. This avoids the circular > dependency: > > FILTER = main Makefile > REMIND_INCLUDES = $(wildcard *) > > main: $(filter-out $(FILTER), $(REMIND_INCLUDES)) > @touch $@ perfect! -- Best Regards, Tarlika Elisabeth Schmitz _______________________________________________ Remind-fans mailing list [email protected] http://lists.whatexit.org/mailman/listinfo/remind-fans
