remove last occurrences of lex

This commit is contained in:
Omar Polo 2021-06-16 15:00:52 +00:00
parent 9e659275b0
commit 2d383cbd5f
3 changed files with 2 additions and 3 deletions

1
.gitignore vendored
View File

@ -5,7 +5,6 @@ gg
*.o
compat/*.o
docs
lex.yy.c
y.tab.*
Makefile.local
compile_flags.txt

View File

@ -1,6 +1,6 @@
FROM alpine as builder
WORKDIR /build
RUN apk update && apk upgrade && apk add alpine-sdk linux-headers libressl-dev flex bison libevent-dev libevent-static
RUN apk update && apk upgrade && apk add alpine-sdk linux-headers libressl-dev bison libevent-dev libevent-static
COPY . .
RUN make static

View File

@ -24,7 +24,7 @@ TAGS: ${SRCS}
@(etags ${SRCS} || true) 2>/dev/null
clean:
rm -f *.o compat/*.o lex.yy.c y.tab.c y.tab.h y.output gmid
rm -f *.o compat/*.o y.tab.c y.tab.h y.output gmid
rm -f compile_flags.txt
make -C regress clean