summaryrefslogtreecommitdiffstats
path: root/eshtrans/Makefile
blob: 7dbd2808f4acec93ec7dbbe33640c5bcd0f8e237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
SOURCES = \
	main.esh \
	common.esh \
	tokens.esh \
	backend/main.esh \
	backend/codegen.esh \
	frontend/main.esh \
	frontend/parser.esh \
	frontend/lexer.esh
OBJECTS = $(SOURCES:.esh=.sh)

all: eshtrans

.SUFFIXES:
.SUFFIXES: .esh .sh

clean:
	rm -f eshtrans $(OBJECTS)

eshtrans: $(OBJECTS) Makefile
	cat $(OBJECTS) >$@
	printf 'main "$${@}"\n' >>$@
	chmod a+x $@

$(OBJECTS): Makefile

.esh.sh:
	cp $< $@