Rev 3172 | Rev 3222 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3172 | Rev 3179 | ||
|---|---|---|---|
| Line 391... | Line 391... | ||
| 391 | $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c $< -o $@ |
391 | $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c $< -o $@ |
| 392 | 392 | ||
| 393 | %.o: %.s |
393 | %.o: %.s |
| 394 | $(AS) $(AFLAGS) $< -o $@ |
394 | $(AS) $(AFLAGS) $< -o $@ |
| 395 | 395 | ||
| - | 396 | # |
|
| - | 397 | # The FPU tests are the only objects for which we allow the compiler to generate |
|
| - | 398 | # FPU instructions. |
|
| - | 399 | # |
|
| 396 | %.o: %.c |
400 | test/fpu/%.o: test/fpu/%.c |
| 397 | $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@ |
401 | $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@ |
| - | 402 | ||
| - | 403 | # |
|
| - | 404 | # Ordinary objects. |
|
| - | 405 | # |
|
| - | 406 | %.o: %.c |
|
| - | 407 | $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c $< -o $@ |
|