URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [m68k/] [boot/] [Makefile] - Rev 1765
Compare with Previous | Blame | View Log
## linux/arch/m68k/boot/Makefile## This file is subject to the terms and conditions of the GNU General Public# License. See the file "COPYING" in the main directory of this archive# for more details.ifdef CONFIG_AMIGAAMIGA_BOOTOBJS := amiga/bootstrap.oendififdef CONFIG_ATARIATARI_BOOTOBJS := atari/bootstrap.oHOSTCC += -b m68k-mintendififdef CONFIG_ATARIatari_bootstrap: $(ATARI_BOOTOBJS)$(HOSTCC) $(HOSTFLAGS) -o $@ $(ATARI_BOOTOBJS)rm -f ../../../bootstrapln $@ ../../../bootstrapendififdef CONFIG_AMIGAamiga_bootstrap: $(AMIGA_BOOTOBJS)$(HOSTCC) $(HOSTFLAGS) -o $@ $(AMIGA_BOOTOBJS)rm -f ../../../bootstrapln $@ ../../../bootstrapendif$(AMIGA_BOOTOBJS) $(ATARI_BOOTOBJS): %.o: %.c$(HOSTCC) $(HOSTFLAGS) -c $< -o $@clean:rm -f *.odep:
