This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # some variables | |
| POSTCSS = ./node_modules/.bin/postcss | |
| POSTCSS_FLAGS = --use autoprefixer autoprefixer.browsers "> 2%" | |
| # wildcard expansion is performed only in targets and in prerequisites so here we need $(wildcard) | |
| SOURCES = $(wildcard src/css/*.css) | |
| # use $(SOURCES) to determine what we actually need using a bit of pattern substitution | |
| TARGETS = $(patsubst src%, build%, $(SOURCES)) | |
| # our default target (see below) | |
| all: $(TARGETS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Delimited continuations | |
| #lang racket ; but will work in any Scheme (without this line) | |
| ;; There are other implementations along the same lines floating around. | |
| ;; Here we are trying to paint a more comprehensible (or at least a less | |
| ;; incomprehensible) picture by structuring the implementation as three | |
| ;; distinct layers: | |
| ;; Layer 1 |
OlderNewer