Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Fix mistake in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
funnelweb committed Oct 25, 2012
1 parent 05cad5c commit 8bf5359
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/fsharp/Makefile.in
Expand Up @@ -7,7 +7,7 @@ all:
$(MAKE) do-proto
$(MAKE) do-final

do-proto clean-proto:
do-proto:
$(MAKE) -C FSharp.Build-proto $@
$(MAKE) -C FSharp.Compiler-proto $@
$(MAKE) -C Fsc-proto $@
Expand All @@ -23,7 +23,10 @@ do-final install:
$(MAKE) -C policy.2.0.FSharp.Core $@
$(MAKE) -C policy.4.0.FSharp.Core $@

clean: clean-proto
clean:
$(MAKE) -C FSharp.Build-proto $@
$(MAKE) -C FSharp.Compiler-proto $@
$(MAKE) -C Fsc-proto $@
$(MAKE) -C FSharp.Core $@
$(MAKE) -C FSharp.Build $@
$(MAKE) -C FSharp.Compiler $@
Expand Down

0 comments on commit 8bf5359

Please sign in to comment.