Skip to content

Commit 5aae9d0

Browse files
committed
Fix Makefile clean target of src/crangler
This target was previously not cleaning up the generated source file for the lexer or the build binary. This issue was seen on Ubuntu and resulted in cmake errors when using `make clean` as part of switching from using the make build to using the cmake build.
1 parent cedd5ea commit 5aae9d0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/crangler/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ INCLUDES= -I ..
1717
include ../config.inc
1818
include ../../$(CPROVER_DIR)/src/common
1919

20-
CLEANFILES = crangler$(LIBEXT)
20+
CLEANFILES = crangler$(LIBEXT) \
21+
c_lex.yy.cpp \
22+
crangler$(EXEEXT)
2123

2224
all: crangler$(EXEEXT)
2325

0 commit comments

Comments
 (0)