Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
fix(build): Fix wrong Makefile clean rule
Browse files Browse the repository at this point in the history
The top level Makefile clean rule directed to a wrong directory.
  • Loading branch information
howjmay authored and jserv committed Jan 6, 2020
1 parent 2bb354e commit 3e9e415
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 @@ -23,7 +23,7 @@ $(MOSQITTO_LIB): $(MOSQITTO_DIR)

clean:
$(MAKE) -C $(DCURL_DIR) clean
$(MAKE) -C $(MOSQITTO_LIB) clean
$(MAKE) -C $(MOSQITTO_DIR) clean

distclean: clean
$(RM) -r $(DCURL_DIR)
Expand Down

0 comments on commit 3e9e415

Please sign in to comment.