Chris Lattner | 0602854 | 2001-09-14 03:55:11 +0000 | [diff] [blame] | 1 | LEVEL = ../../.. |
Chris Lattner | b0ddffa | 2001-09-14 03:47:57 +0000 | [diff] [blame] | 2 | LIBRARYNAME = sparc |
| 3 | |
| 4 | ## List source files in link order |
| 5 | Source = \ |
Chris Lattner | 1a176f1 | 2001-10-14 17:25:31 +0000 | [diff] [blame^] | 6 | Sparc.cpp \ |
| 7 | Sparc.burm.cpp \ |
| 8 | SparcInstrSelection.cpp \ |
| 9 | SparcRegClassInfo.cpp \ |
| 10 | SparcRegInfo.cpp EmitAssembly.cpp |
Chris Lattner | b0ddffa | 2001-09-14 03:47:57 +0000 | [diff] [blame] | 11 | |
| 12 | include $(LEVEL)/Makefile.common |
| 13 | |
Chris Lattner | 1a176f1 | 2001-10-14 17:25:31 +0000 | [diff] [blame^] | 14 | Debug/Sparc.burg.in1 : Sparc.burg.in |
| 15 | g++ -E -I$(LEVEL)/include -D_DEBUG -x c++ $< | sed '/^# /d' | sed 's/Ydefine/#define/' > $@ |
| 16 | |
| 17 | Debug/Sparc.burg : Debug/Sparc.burg.in1 |
| 18 | g++ -E -I$(LEVEL)/include -D_DEBUG -x c++ $< | sed '/^# /d' | sed 's/Xinclude/#include/g' | sed 's/Xdefine/#define/g' > $@ |
| 19 | |