#
# make file

# ------------------ customization ---------------------------------

CURDIR:sh = pwd


FILTER=s?".*") ; ---1234567890?"$(CURDIR)") ; ---1234567890?


all: esp 

FORCE:

esp:	FORCE
	@echo updating the file loadFunction 
	@cat loadFunction | sed '$(FILTER)' > result.file
	@rm loadFunction 
	@mv result.file loadFunction 
	
clean: 


