Skip to content

Commit

Permalink
Properly clean up build artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterMosmans committed Sep 27, 2016
1 parent f30b3e3 commit 77d6330
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ clean::
clean::
$(MAKE) -C ubase clean
$(MAKE) -C lwt clean
$(MAKE) -C fsmonitor/windows clean

ifneq ($(strip $(UIMACDIR)),)
clean::
Expand Down
2 changes: 1 addition & 1 deletion src/fsmonitor/windows/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FSMONITOR = $(NAME)-fsmonitor
FSMONITOR = unison-fsmonitor

DIR=fsmonitor/windows
FSMOCAMLOBJS = \
Expand Down
3 changes: 2 additions & 1 deletion src/lwt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ uninstall:
ocamlfind remove $(NAME)

clean::
rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.a *.o *~ *.bak
$(RM) -f *.cmi *.cmo *.cmx *.cma *.cmxa *.a *.o *~ *.bak
$(RM) -f win/*.cm[ioxa] win/*.cmxa win/*.a win/*.o win/*~ win/*.bak

clean::
cd example && $(MAKE) clean

0 comments on commit 77d6330

Please sign in to comment.