Makefile (c37fe6aff89cb0d842993fe2f69e48bf3ebe0ab0) Makefile (d92cc4d5164398cc6d191084b46e622976c0ba89)
1#
2# m68k/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies. Remember to do have actions
6# for "archclean" and "archdep" for cleaning up and making dependencies for
7# this architecture
8#

--- 84 unchanged lines hidden (view full) ---

93# Select the assembler head startup code. Order is important. The default
94# head code is first, processor specific selections can override it after.
95#
96head-y := arch/m68k/kernel/head.o
97head-$(CONFIG_SUN3) := arch/m68k/kernel/sun3-head.o
98head-$(CONFIG_M68000) := arch/m68k/68000/head.o
99head-$(CONFIG_COLDFIRE) := arch/m68k/coldfire/head.o
100
1#
2# m68k/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies. Remember to do have actions
6# for "archclean" and "archdep" for cleaning up and making dependencies for
7# this architecture
8#

--- 84 unchanged lines hidden (view full) ---

93# Select the assembler head startup code. Order is important. The default
94# head code is first, processor specific selections can override it after.
95#
96head-y := arch/m68k/kernel/head.o
97head-$(CONFIG_SUN3) := arch/m68k/kernel/sun3-head.o
98head-$(CONFIG_M68000) := arch/m68k/68000/head.o
99head-$(CONFIG_COLDFIRE) := arch/m68k/coldfire/head.o
100
101core-y += arch/m68k/
102libs-y += arch/m68k/lib/
103
104
105all: zImage
106
107lilo: vmlinux
108 if [ -f $(INSTALL_PATH)/vmlinux ]; then mv -f $(INSTALL_PATH)/vmlinux $(INSTALL_PATH)/vmlinux.old; fi
109 if [ -f $(INSTALL_PATH)/System.map ]; then mv -f $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi

--- 37 unchanged lines hidden ---
101libs-y += arch/m68k/lib/
102
103
104all: zImage
105
106lilo: vmlinux
107 if [ -f $(INSTALL_PATH)/vmlinux ]; then mv -f $(INSTALL_PATH)/vmlinux $(INSTALL_PATH)/vmlinux.old; fi
108 if [ -f $(INSTALL_PATH)/System.map ]; then mv -f $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi

--- 37 unchanged lines hidden ---