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

all: main

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

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

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