[BACK]Return to Makefile.hp300 CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / hp300 / conf

Annotation of src/sys/arch/hp300/conf/Makefile.hp300, Revision 1.53

1.53    ! thorpej     1: #      $NetBSD: Makefile.hp300,v 1.52 1997/03/14 23:14:39 mycroft Exp $
1.20      cgd         2:
1.12      brezak      3: # Makefile for NetBSD
1.1       cgd         4: #
                      5: # This makefile is constructed from a machine description:
                      6: #      config machineid
                      7: # Most changes should be made in the machine description
1.14      mycroft     8: #      /sys/arch/hp300/conf/``machineid''
1.1       cgd         9: # after which you should do
1.31      mycroft    10: #      config machineid
1.1       cgd        11: # Machine generic makefile changes should be made in
1.14      mycroft    12: #      /sys/arch/hp300/conf/Makefile.hp300
1.1       cgd        13: # after which config should be rerun for all machines of that type.
                     14: #
                     15: # N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE
                     16: #      IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING
                     17: #
                     18: # -DTRACE      compile in kernel tracing hooks
                     19: # -DQUOTA      compile in file system quotas
                     20:
1.31      mycroft    21: # DEBUG is set to -g if debugging.
                     22: # PROF is set to -pg if profiling.
1.1       cgd        23:
1.36      mycroft    24: CC?=   cc
                     25: LD?=   ld
1.40      mycroft    26: MKDEP?=        mkdep
1.44      mycroft    27: STRIP?=        strip
1.45      jonathan   28: COPTS?=                -O2
1.1       cgd        29:
                     30: # source tree is located via $S relative to the compilation directory
1.43      mycroft    31: .ifndef S
1.40      mycroft    32: S!=    cd ../../../..; pwd
1.43      mycroft    33: .endif
1.40      mycroft    34: HP300= $S/arch/hp300
1.1       cgd        35:
1.41      mycroft    36: INCLUDES=      -I. -I$S/arch -I$S -nostdinc
1.42      mycroft    37: CPPFLAGS=      ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
                     38:                -Dmc68020 -Dhp300 -DFPCOPROC
1.40      mycroft    39: CWARNFLAGS=    -Werror
1.45      jonathan   40: CFLAGS=                ${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
1.35      mycroft    41: AFLAGS=                -x assembler-with-cpp -traditional-cpp -D_LOCORE
1.31      mycroft    42: LINKFLAGS=     -n -Ttext 0 -e start
1.44      mycroft    43: STRIPFLAGS=    -d
                     44:
                     45: HOSTED_CC=     ${CC}
                     46: HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
                     47: HOSTED_CFLAGS= ${CFLAGS}
1.1       cgd        48:
1.9       cgd        49: ### find out what to use for libkern
                     50: .include "$S/lib/libkern/Makefile.inc"
                     51: .ifndef PROF
                     52: LIBKERN=       ${KERNLIB}
                     53: .else
                     54: LIBKERN=       ${KERNLIB_PROF}
                     55: .endif
                     56:
1.23      christos   57: ### find out what to use for libcompat
                     58: .include "$S/compat/common/Makefile.inc"
                     59: .ifndef PROF
                     60: LIBCOMPAT=     ${COMPATLIB}
                     61: .else
                     62: LIBCOMPAT=     ${COMPATLIB_PROF}
                     63: .endif
                     64:
1.17      mycroft    65: ### for the Motorola 68040 Floating Point Software Product
                     66: .include "$S/arch/m68k/fpsp/Makefile.inc"
                     67:
1.42      mycroft    68: # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
                     69: # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
1.1       cgd        70:
1.31      mycroft    71: NORMAL_C=      ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
1.35      mycroft    72: NORMAL_S=      ${CC} ${AFLAGS} ${CPPFLAGS} -c $<
1.1       cgd        73:
1.44      mycroft    74: HOSTED_C=      ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
1.41      mycroft    75:
1.1       cgd        76: %OBJS
                     77:
                     78: %CFILES
                     79:
1.32      mycroft    80: #%SFILES
1.31      mycroft    81:
1.1       cgd        82: # load lines for config "xxx" will be emitted as:
                     83: # xxx: ${SYSTEM_DEP} swapxxx.o
                     84: #      ${SYSTEM_LD_HEAD}
                     85: #      ${SYSTEM_LD} swapxxx.o
                     86: #      ${SYSTEM_LD_TAIL}
1.31      mycroft    87: SYSTEM_OBJ=    locore.o ${FPSP} \
1.37      cgd        88:                param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
1.1       cgd        89: SYSTEM_DEP=    Makefile ${SYSTEM_OBJ}
1.31      mycroft    90: SYSTEM_LD_HEAD=        @rm -f $@
                     91: SYSTEM_LD=     @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
                     92:                ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
                     93: SYSTEM_LD_TAIL=        @size $@; chmod 755 $@
                     94:
                     95: DEBUG?=
                     96: .if ${DEBUG} == "-g"
                     97: LINKFLAGS+=    -X
                     98: SYSTEM_LD_TAIL+=; \
1.1       cgd        99:                echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
1.44      mycroft   100:                echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
1.31      mycroft   101: .else
1.40      mycroft   102: LINKFLAGS+=    -S
1.31      mycroft   103: .endif
1.1       cgd       104:
                    105: %LOAD
                    106:
1.51      thorpej   107: assym.h: $S/kern/genassym.sh ${HP300}/hp300/genassym.cf
                    108:        sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
1.52      mycroft   109:            < ${HP300}/hp300/genassym.cf > assym.h.tmp && \
                    110:        mv -f assym.h.tmp assym.h
1.31      mycroft   111:
                    112: param.c: $S/conf/param.c
                    113:        rm -f param.c
                    114:        cp $S/conf/param.c .
                    115:
                    116: param.o: param.c Makefile
1.42      mycroft   117:        ${NORMAL_C}
1.31      mycroft   118:
                    119: ioconf.o: ioconf.c
                    120:        ${NORMAL_C}
                    121:
1.46      thorpej   122: newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
1.11      mycroft   123:        sh $S/conf/newvers.sh
1.31      mycroft   124:        ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
                    125:
1.48      thorpej   126: clean: cleankernel
                    127: cleankernel:
1.37      cgd       128:        rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
1.52      mycroft   129:            [Ee]rrs linterrs makelinks assym.h.tmp assym.h
1.1       cgd       130:
1.31      mycroft   131: lint:
1.49      perry     132:        @lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
1.14      mycroft   133:            ioconf.c param.c | \
1.31      mycroft   134:            grep -v 'static function .* unused'
1.1       cgd       135:
1.31      mycroft   136: tags:
                    137:        @echo "see $S/kern/Makefile for tags"
1.1       cgd       138:
                    139: links:
                    140:        egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
                    141:          sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
                    142:        echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
                    143:          sort -u | comm -23 - dontlink | \
1.31      mycroft   144:          sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
1.1       cgd       145:        sh makelinks && rm -f dontlink
                    146:
1.31      mycroft   147: SRCS=  ${HP300}/hp300/locore.s \
1.37      cgd       148:        param.c ioconf.c ${CFILES} ${SFILES}
1.47      hpeyerl   149: depend: .depend
1.37      cgd       150: .depend: ${SRCS} assym.h param.c
1.40      mycroft   151:        ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${HP300}/hp300/locore.s
                    152:        ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
1.38      scottr    153:        -if test -n "${SFILES}"; then \
1.40      mycroft   154:                ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
1.38      scottr    155:        fi
1.31      mycroft   156:
                    157:
                    158: # depend on root or device configuration
                    159: autoconf.o conf.o: Makefile
                    160:
                    161: # depend on network or filesystem configuration
                    162: uipc_proto.o vfs_conf.o: Makefile
1.1       cgd       163:
1.31      mycroft   164: # depend on maxusers
1.52      mycroft   165: machdep.o: Makefile
1.1       cgd       166:
1.31      mycroft   167: # depend on CPU configuration
1.52      mycroft   168: dma.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
1.1       cgd       169:
1.14      mycroft   170:
1.31      mycroft   171: locore.o: ${HP300}/hp300/locore.s assym.h
                    172:        ${NORMAL_S}
1.1       cgd       173:
                    174: %RULES

CVSweb <webmaster@jp.NetBSD.org>