Skip to content

Commit

Permalink
fix: unexpected remove on make clean
Browse files Browse the repository at this point in the history
idk how that ended up there 👀, nobody saw nothing
  • Loading branch information
javalsai committed Aug 29, 2024
1 parent 98ef611 commit 2ccfc03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lidm: $(OBJ)

.PHONY: clean
clean:
rm -f $(ODIR)/*.o *- li $(INCDIR)/*-
rm -f $(ODIR)/*.o lidm

# Copy lidm to ${DESTDIR}${PREFIX}/bin (/usr/bin)
install: lidm
Expand Down

1 comment on commit 2ccfc03

@javalsai
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Funny that $(INCDIR) is not defined, soooo, $(INCDIR)/*-..... yk, funny, we got --no-preserve-root for a reason....

Please sign in to comment.