Hello group,

I'm new to developing in this particular environment, so sorry for the 
newbie question.  I forked the openlayers master branch and pulled 
everything down with Git.  Then ran 

make check-deps according to the DEVELOPING.md page.

make check-deps
make: *** No rule to make target 'check-deps'. Stop.

Please, any guidance much appreciated. I'm running Cygwin on Windows

$ more Makefile
SRC_GLSL := $(shell find src -type f -name '*.glsl')
SRC_SHADER_JS := $(patsubst %shader.glsl,%shader.js,$(SRC_GLSL))
SRC_SHADERLOCATIONS_JS := $(patsubst 
%shader.glsl,%shader/Locations.js,$(SRC_GLSL))

.PHONY: shaders
shaders: $(SRC_SHADER_JS) $(SRC_SHADERLOCATIONS_JS)

%shader.js: %shader.glsl src/ol/webgl/shader.mustache tasks/glslunit.js
 @node tasks/glslunit.js --input $< | ./node_modules/.bin/mustache - 
src/ol/webgl/shader.mustache > $@

%shader/Locations.js: %shader.glsl src/ol/webgl/shaderlocations.mustache 
tasks/glslunit.js
 @mkdir -p $(@D)
 @node tasks/glslunit.js --input $< | ./node_modules/.bin/mustache - 
src/ol/webgl/shaderlocations.mustache > $@


My ultimate goal is to add interactive drawing of arc segments to drawing 
polygons, and to have that geometry formatted our as CURVEPOLYGON WKT.

Thank you
-Tom


-- 
You received this message because you are subscribed to the Google Groups 
"OpenLayers Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to openlayers-dev+unsubscr...@googlegroups.com.
To post to this group, send email to openlayers-dev@googlegroups.com.
Visit this group at https://groups.google.com/group/openlayers-dev.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/openlayers-dev/ce1b55b7-9a97-46e5-9686-c79536240e10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to