summaryrefslogtreecommitdiffstats
path: root/feed/Makefile
blob: aeb8883ac03646d46fb82a0deeace4e99bb5a43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CLAGS=-Wextra -g -O2 -pipe
LIBS=-lfl

all: sse_lex_c

sse_lex_c.yy.c: sse_lex_c.l
	flex -o $@ $^

sse_lex_c: sse_lex_c.yy.o
	$(CC) -o $@ $^ $(LIBS)

clean:
	rm -f *.o sse_lex_c.yy.c sse_lex_c

.PHONY: all clean