forked from idris-lang/Idris-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored the build inside Setup.hs and the various Makefiles.
* Refactored the Setup.hs script into a much simpler layout. * Simplified the idris.cabal file, alphabetizing the modules, build dependencies, simplifying the indentation, standardizing the flags, and normalizing the formatting of lists. * Fixed a bug in the generation of the executable_pom.xml file for the Java backend.
- Loading branch information
Gabe McArthur
committed
Sep 24, 2013
1 parent
bef8dce
commit c7cf1f0
Showing
8 changed files
with
323 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
IDRIS := idris | ||
|
||
check: .PHONY | ||
build: .PHONY | ||
$(IDRIS) --build effects.ipkg | ||
|
||
recheck: clean check | ||
clean: .PHONY | ||
$(IDRIS) --clean effects.ipkg | ||
|
||
install: | ||
$(IDRIS) --install effects.ipkg | ||
|
||
clean: .PHONY | ||
$(IDRIS) --clean effects.ipkg | ||
rebuild: clean build | ||
|
||
.PHONY: |
Oops, something went wrong.