diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-17 16:06:15 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-17 16:06:15 -0500 |
commit | 1872bfbc1f4a5b3c4980fae889787ab15ddcc83b (patch) | |
tree | ee980ec191b585f16ddee75c7537250aa1e054b6 /Makefile | |
parent | aaf499a6cab77b827d427f234e5c1f1e21c410ef (diff) |
Porting on x86_64
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,10 +1,14 @@ | |||
1 | .PHONY: all-32 all-64 clean purge | 1 | .PHONY: all-32 all-64 all-sparc clean purge |
2 | 2 | ||
3 | all-32: | 3 | all-32: |
4 | echo "Legacy warning: Building is done with scons." | 4 | echo "Legacy warning: Building is done with scons." |
5 | ARCH=x86 scons | 5 | ARCH=x86 scons |
6 | all-64: | 6 | all-64: |
7 | ARCH=x86_64 scons | 7 | ARCH=x86_64 scons |
8 | |||
9 | all-sparc: | ||
10 | ARCH=sparc64 scons | ||
11 | |||
8 | clean: | 12 | clean: |
9 | echo "Legacy warning: Building is now done with scons." | 13 | echo "Legacy warning: Building is now done with scons." |
10 | scons -c | 14 | scons -c |