aboutsummaryrefslogtreecommitdiffstats
path: root/ste/example/Makefile
blob: f9053d7bee2f7480a57f27fe65a3603bbfe9720d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.SUFFIXES:

all: main

ste: ../ste.c
	$(CC) -o $@ $<

%.c: %.c.ste ste
	./ste -m OUTPUT $<

main: main.c tmpl.c
	$(CC) -o $@ $<

clean: 
	$(RM) ste main tmpl.c