Deleted Added
full compact
Makefile.powerpc (3200) Makefile.powerpc (3258)
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
3# $Id: Makefile.i386,v 1.38 1994/09/23 07:01:59 phk Exp $
3# $Id: Makefile.i386,v 1.39 1994/09/29 14:02:40 csgr Exp $
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

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

61NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
62# XXX errors leak out of all the pipes. Should use cc *.S.
63# XXX LOCORE means "don't declare C stuff" not "for locore.s".
64NORMAL_S= ${CPP} -I. -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
65DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $<
66DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
67
68SFILES= ${I386}/i386/exception.s ${I386}/i386/microtime.s \
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

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

61NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
62# XXX errors leak out of all the pipes. Should use cc *.S.
63# XXX LOCORE means "don't declare C stuff" not "for locore.s".
64NORMAL_S= ${CPP} -I. -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
65DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $<
66DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
67
68SFILES= ${I386}/i386/exception.s ${I386}/i386/microtime.s \
69 ${I386}/i386/support.s ${I386}/i386/swtch.s
69 ${I386}/i386/support.s ${I386}/i386/swtch.s ${I386}/apm/apm_setup.s
70SYSTEM_CFILES= ioconf.c param.c vnode_if.c
71SYSTEM_SFILES= ${I386}/i386/locore.s
72SYSTEM_OBJS=locore.o vnode_if.o ${OBJS} ioconf.o param.o
73SYSTEM_DEP=Makefile symbols.sort ${SYSTEM_OBJS} libkern.a
74SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
75SYSTEM_LD= @${LD} -Bstatic -Z -T ${LOAD_ADDRESS} -o $@ -X ${SYSTEM_OBJS} vers.o libkern.a
76SYSTEM_LD_TAIL= @echo rearranging symbols; symorder symbols.sort $@; \
77 ${DBSYM} -fT ${LOAD_ADDRESS} $@; ${STRIP} -x $@; size $@; chmod 755 $@

--- 134 unchanged lines hidden ---
70SYSTEM_CFILES= ioconf.c param.c vnode_if.c
71SYSTEM_SFILES= ${I386}/i386/locore.s
72SYSTEM_OBJS=locore.o vnode_if.o ${OBJS} ioconf.o param.o
73SYSTEM_DEP=Makefile symbols.sort ${SYSTEM_OBJS} libkern.a
74SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
75SYSTEM_LD= @${LD} -Bstatic -Z -T ${LOAD_ADDRESS} -o $@ -X ${SYSTEM_OBJS} vers.o libkern.a
76SYSTEM_LD_TAIL= @echo rearranging symbols; symorder symbols.sort $@; \
77 ${DBSYM} -fT ${LOAD_ADDRESS} $@; ${STRIP} -x $@; size $@; chmod 755 $@

--- 134 unchanged lines hidden ---