diff options
author | Omar Polo <op@omarpolo.com> | 2021-06-16 15:00:52 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-06-16 15:00:52 +0000 |
commit | 2d383cbd5f19052f4f4d154e0d5e4ec387b12690 (patch) | |
tree | cc752181e68040cf4e3987782bde55bae866f7e2 | |
parent | 9e659275b0fa7f5972215b979ba95a21571d9b1d (diff) |
remove last occurrences of lex
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | Makefile | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -5,7 +5,6 @@ gg *.o compat/*.o docs -lex.yy.c y.tab.* Makefile.local compile_flags.txt @@ -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 @@ -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 |