bellard | a735aa3 | 2004-02-25 23:54:25 +0000 | [diff] [blame] | 1 | # |
| 2 | # NOTE: only compilable with x86 cross compile tools |
| 3 | # |
| 4 | include ../config-host.mak |
| 5 | |
| 6 | DEFINES= |
| 7 | |
| 8 | TARGETS= |
bellard | a735aa3 | 2004-02-25 23:54:25 +0000 | [diff] [blame] | 9 | |
| 10 | all: $(TARGETS) |
| 11 | |
bellard | a735aa3 | 2004-02-25 23:54:25 +0000 | [diff] [blame] | 12 | %.o: %.S |
| 13 | $(CC) $(DEFINES) -c -o $@ $< |
| 14 | |
aurel32 | 10aa630 | 2009-03-07 04:56:06 +0000 | [diff] [blame] | 15 | %.dtb: %.dts |
| 16 | dtc -I dts -O dtb -o $@ $< |
| 17 | |
bellard | a735aa3 | 2004-02-25 23:54:25 +0000 | [diff] [blame] | 18 | clean: |
| 19 | rm -f $(TARGETS) *.o *~ |