1# 2# Makefile for the ia32 kernel emulation subsystem. 3# 4 5.S.s: 6 $(CPP) $(AFLAGS) $(AFLAGS_KERNEL) -o $*.s $< 7.S.o: 8 $(CC) $(AFLAGS) $(AFLAGS_KERNEL) -c -o $*.o $< 9 10all: ia32.o 11 12O_TARGET := ia32.o 13 14obj-y := ia32_entry.o sys_ia32.o ia32_ioctl.o ia32_signal.o ia32_support.o ia32_traps.o \ 15 binfmt_elf32.o ia32_ldt.o 16 17clean:: 18 19include $(TOPDIR)/Rules.make 20