aboutsummaryrefslogtreecommitdiff
path: root/scheme/Makefile
blob: fc1b481764f3c38899bafa412bd94cda709b73dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CHICKEN_CC = chicken-csc -x -r5rs-syntax

SRC = $(shell find . -type f -name '*.scm')
BIN = $(SRC:.scm=)

all: $(BIN)

utils:
	@

%: %.scm
	$(CHICKEN_CC) -o $@ $<

clean:
	rm -f $(BIN)

re: clean all

.PHONY: all clean re