[Remind-Fans] daemon mode - include file update

Christoph Scheurer christoph.scheurer at web.de
Thu Mar 19 11:59:58 EDT 2009


Hi,

> 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 $@

Still learning myself ;-)

Christoph



More information about the Remind-fans mailing list