fixed bug in makefile that prevented clean-binary from working

This commit is contained in:
a. fox 2024-01-05 13:03:53 -05:00
parent 8d904d0c85
commit c78d450a7b
1 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,9 @@ woo: clean-binary
(asdf:make :lspx))"
clean-binary:
ifneq ("$(wildcard bin/lspx)","")
rm bin/lspx
endif
ifneq ("$(wildcard bin/lspx)","")
rm bin/lspx
endif
clean:
rm -ri bin/