Skip to content

Commit

Permalink
Rename the main module lib.rs.
Browse files Browse the repository at this point in the history
This is a first step toward the use of rustpkg.
  • Loading branch information
sebcrozet committed Aug 31, 2013
1 parent a40899e commit 70cee0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ nalgebra_lib_path=lib
nalgebra_doc_path=doc
all:
mkdir -p $(nalgebra_lib_path)
rust build src/nalgebra.rc --out-dir $(nalgebra_lib_path) --opt-level 3
rust build src/lib.rs --out-dir $(nalgebra_lib_path) --opt-level 3

test:
mkdir -p $(nalgebra_lib_path)
rust test src/nalgebra.rc
rm nalgebratest~
rust test src/lib.rs
rm libtest~

doc:
mkdir -p $(nalgebra_doc_path)
rust doc src/nalgebra.rc --output-dir $(nalgebra_doc_path)
rust doc src/lib.rs --output-dir $(nalgebra_doc_path)

distcheck:
rm -rf $(tmp)
Expand Down
File renamed without changes.

0 comments on commit 70cee0e

Please sign in to comment.