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