diff options
| author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-08-08 09:49:43 -0400 |
|---|---|---|
| committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-11-24 09:14:26 -0500 |
| commit | 47ca70df678bc698c51a1f8f2dfbc2112add13a9 (patch) | |
| tree | 19cdce119702a55b6271b9ba246629e725a17d6b | |
| parent | c492d17a0f3a14a3d9b047c6b91d2dbce881e151 (diff) | |
Don't limit parallelism during compilation
This is considerably faster on my machine.
| -rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
| @@ -8,10 +8,8 @@ ETAGS ?= etags | |||
| 8 | 8 | ||
| 9 | all: links | 9 | all: links |
| 10 | 10 | ||
| 11 | NCPUS := $(shell getconf _NPROCESSORS_ONLN) | ||
| 12 | |||
| 13 | cpp: | 11 | cpp: |
| 14 | $(MAKE) -C native -j $(NCPUS) | 12 | $(MAKE) -C native -j |
| 15 | 13 | ||
| 16 | links: clean-links cpp | 14 | links: clean-links cpp |
| 17 | cd schedcat/sched; ln -s ../../native/_sched.so; ln -s ../../native/sched.py native.py | 15 | cd schedcat/sched; ln -s ../../native/_sched.so; ln -s ../../native/sched.py native.py |
