diff options
author | Brian Paul <[email protected]> | 2009-01-09 21:00:15 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-01-10 14:58:44 -0700 |
commit | fba6dac380ed7db17c7f329d03fd5bcfae9c6aaf (patch) | |
tree | ae326aa2713e57b15a55499a2acb930a8a08dbc6 /src/gallium/drivers/cell/ppu/Makefile | |
parent | 2b26a92cd34f8d83cc0ae621d1cfeb3955de57fa (diff) |
cell: added rule to produce .s assembly files
Diffstat (limited to 'src/gallium/drivers/cell/ppu/Makefile')
-rw-r--r-- | src/gallium/drivers/cell/ppu/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/ppu/Makefile b/src/gallium/drivers/cell/ppu/Makefile index 9358a47284c..4d6ac0d2663 100644 --- a/src/gallium/drivers/cell/ppu/Makefile +++ b/src/gallium/drivers/cell/ppu/Makefile @@ -55,6 +55,9 @@ INCLUDE_DIRS = \ $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@ +.c.s: + $(CC) -S $(INCLUDE_DIRS) $(CFLAGS) $< -o $@ + default: $(CELL_LIB) |