Home | History | Annotate | Line # | Download | only in conf
Makefile.amiga revision 1.42
      1 #	$NetBSD: Makefile.amiga,v 1.42 1996/05/11 16:11:41 mycroft Exp $
      2 
      3 # Makefile for NetBSD
      4 #
      5 # This makefile is constructed from a machine description:
      6 #	config machineid
      7 # Most changes should be made in the machine description
      8 #	/sys/arch/amiga/conf/``machineid''
      9 # after which you should do
     10 #	config machineid
     11 # Machine generic makefile changes should be made in
     12 #	/sys/arch/amiga/conf/Makefile.amiga
     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 
     21 # DEBUG is set to -g if debugging.
     22 # PROF is set to -pg if profiling.
     23 
     24 AS?=	as
     25 CC?=	cc
     26 CPP?=	cpp
     27 LD?=	ld
     28 STRIP?=	strip -d
     29 TOUCH?=	touch -f -c
     30 
     31 # source tree is located via $S relative to the compilation directory
     32 S=	../../../..
     33 AMIGA=	../..
     34 
     35 INCLUDES=	-I. -I$S/arch -I$S
     36 CPPFLAGS=	${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Damiga
     37 .if empty(IDENT:M-DM68060)
     38 CFLAGS=		${DEBUG} -O2 -Werror -m68020 -msoft-float ${COPTS}
     39 .else
     40 CFLAGS=		${DEBUG} -O2 -Werror -m68060 -msoft-float ${COPTS}
     41 .endif
     42 
     43 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     44 LINKFLAGS=	-n -Ttext 0 -e start
     45 
     46 ### find out what to use for libkern
     47 .include "$S/lib/libkern/Makefile.inc"
     48 .ifndef PROF
     49 LIBKERN=	${KERNLIB}
     50 .else
     51 LIBKERN=	${KERNLIB_PROF}
     52 .endif
     53 
     54 ### find out what to use for libcompat
     55 .include "$S/compat/common/Makefile.inc"
     56 .ifndef PROF
     57 LIBCOMPAT=	${COMPATLIB}
     58 .else
     59 LIBCOMPAT=	${COMPATLIB_PROF}
     60 .endif
     61 
     62 ### for the Motorola 68040 Floating Point Software Product
     63 .include "$S/arch/m68k/fpsp/Makefile.inc"
     64 
     65 ### for the Motorola 68060 Software Support Package
     66 .include "$S/arch/m68k/060sp/Makefile.inc"
     67 
     68 # compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP}
     69 # where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix,
     70 # capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file
     71 # is marked as config-dependent.
     72 
     73 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     74 NORMAL_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
     75 
     76 DRIVER_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     77 DRIVER_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
     78 
     79 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     80 NORMAL_S_C=	${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $<
     81 
     82 .SUFFIXES: .o .g
     83 
     84 .g.o: ; echo This is a dummy rule and should not be executed.
     85 
     86 NORMAL_G=	gspa < $< | gspahextoc > $*.c; ${CC} -c ${CFLAGS} ${PROF} $*.c
     87 
     88 %OBJS
     89 
     90 %CFILES
     91 
     92 %SFILES
     93 
     94 # load lines for config "xxx" will be emitted as:
     95 # xxx: ${SYSTEM_DEP} swapxxx.o
     96 #	${SYSTEM_LD_HEAD}
     97 #	${SYSTEM_LD} swapxxx.o
     98 #	${SYSTEM_LD_TAIL}
     99 SYSTEM_OBJ=	locore.o ${FPSP} ${060SP} \
    100 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
    101 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
    102 SYSTEM_LD_HEAD=	@rm -f $@
    103 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
    104 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
    105 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
    106 
    107 DEBUG?=
    108 .if ${DEBUG} == "-g"
    109 LINKFLAGS+=	-X
    110 SYSTEM_LD_TAIL+=; \
    111 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
    112 		echo ${STRIP} $@; ${STRIP} $@
    113 .else
    114 LINKFLAGS+=	-x
    115 .endif
    116 
    117 %LOAD
    118 
    119 assym.h: genassym
    120 	./genassym >assym.h
    121 
    122 genassym: genassym.o
    123 	${CC} -o $@ genassym.o
    124 
    125 genassym.o: ${AMIGA}/amiga/genassym.c
    126 	${NORMAL_C_C}
    127 
    128 param.c: $S/conf/param.c
    129 	rm -f param.c
    130 	cp $S/conf/param.c .
    131 
    132 param.o: param.c Makefile
    133 	${NORMAL_C_C}
    134 
    135 ioconf.o: ioconf.c
    136 	${NORMAL_C}
    137 
    138 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    139 	sh $S/conf/newvers.sh
    140 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    141 
    142 
    143 clean::
    144 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    145 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    146 
    147 lint:
    148 	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \
    149 	    ${AMIGA}/amiga/Locore.c ${CFILES} ${AMIGA}/amiga/swapgeneric.c \
    150 	    ioconf.c param.c | \
    151 	    grep -v 'static function .* unused'
    152 
    153 tags:
    154 	@echo "see $S/kern/Makefile for tags"
    155 
    156 links:
    157 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    158 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    159 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    160 	  sort -u | comm -23 - dontlink | \
    161 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    162 	sh makelinks && rm -f dontlink
    163 
    164 SRCS=	${AMIGA}/amiga/locore.s \
    165 	param.c ioconf.c ${CFILES} ${SFILES}
    166 depend:: .depend
    167 .depend: ${SRCS} assym.h param.c
    168 	mkdep ${AFLAGS} ${CPPFLAGS} ${AMIGA}/amiga/locore.s
    169 	mkdep -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    170 	mkdep -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    171 	mkdep -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${AMIGA}/amiga/genassym.c
    172 
    173 
    174 # depend on root or device configuration
    175 autoconf.o conf.o: Makefile
    176  
    177 # depend on network or filesystem configuration 
    178 uipc_proto.o vfs_conf.o: Makefile 
    179 
    180 # depend on maxusers
    181 genassym.o machdep.o: Makefile
    182 
    183 # depend on CPU configuration 
    184 amiga_init.o locore.o pmap.o sys_machdep.o bzsc.o flsc.o sbic.o sfas.o: Makefile
    185 
    186 
    187 locore.o: ${AMIGA}/amiga/locore.s assym.h
    188 	${NORMAL_S}
    189 
    190 %RULES
    191