summaryrefslogtreecommitdiffstats
path: root/feed/Makefile
blob: adeeaaf9a6560f02c0117e16ff47be3bcbb57fb3 (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