diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-13 13:42:28 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-13 13:42:28 -0500 |
commit | a8e360a9c4eda23015e749110cc75c44f6925875 (patch) | |
tree | 655fcd81a9a00841716dc95a41c7508f0b64ee0d /Makefile | |
parent | 05d7c26fbe8ce8edc2e3cb43268d567bdbecae81 (diff) |
Update Makefile e SConstruct for liblitmus 2010
- add all-32, all-64 targets in Makefile (cross compilation for x86)
- update SConstruct kernel search path
- add architecture dependent include dirs in search path
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -1,7 +1,13 @@ | |||
1 | all: | 1 | .PHONY: all-32 all-64 clean purge |
2 | echo "Legacy warning: Building is done with scons." | ||
3 | scons | ||
4 | 2 | ||
3 | all-32: | ||
4 | echo "Legacy warning: Building is done with scons." | ||
5 | ARCH=x86 scons | ||
6 | all-64: | ||
7 | ARCH=x86_64 scons | ||
5 | clean: | 8 | clean: |
6 | echo "Legacy warning: Building is now done with scons." | 9 | echo "Legacy warning: Building is now done with scons." |
7 | scons -c | 10 | scons -c |
11 | |||
12 | purge: clean | ||
13 | rm -rf .sconf_temp .sconsign.dblite | ||