Home | History | Annotate | Line # | Download | only in conf
Makefile.atari revision 1.63
      1 #	$NetBSD: Makefile.atari,v 1.63 2001/10/23 19:26:44 thorpej 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/atari/conf/``machineid''
      9 # after which you should do
     10 #	config machineid
     11 # Machine generic makefile changes should be made in
     12 #	/sys/arch/atari/conf/Makefile.atari
     13 # after which config should be rerun for all machines of that type.
     14 
     15 MACHINE_ARCH=m68k
     16 
     17 # DEBUG is set to -g if debugging.
     18 # PROF is set to -pg if profiling.
     19 
     20 AR?=	ar
     21 AS?=	as
     22 CC?=	cc
     23 CPP?=	cpp
     24 LD?=	ld
     25 LORDER?=lorder
     26 MKDEP?=	mkdep
     27 NM?=	nm
     28 RANLIB?=ranlib
     29 SIZE?=	size
     30 STRIP?=	strip
     31 TSORT?=	tsort -q
     32 
     33 COPTS?=	-O2
     34 
     35 # source tree is located via $S relative to the compilation directory
     36 .ifndef S
     37 S!=	cd ../../../..; pwd
     38 .endif
     39 ATARI=	$S/arch/atari
     40 
     41 HAVE_EGCS!=	${CC} --version | egrep "^(2\.[89]|egcs)" ; echo 
     42 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     43 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D_KERNEL_OPT -Datari
     44 CWARNFLAGS?=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \
     45 		-Wpointer-arith
     46 # XXX Delete -Wuninitialized for now, since the compiler doesn't
     47 # XXX always get it right.  --thorpej 
     48 CWARNFLAGS+=    -Wno-uninitialized
     49 .if (${HAVE_EGCS} != "")
     50 CWARNFLAGS+=	-Wno-main
     51 .endif
     52 .if empty(IDENT:M-DM68060)
     53 CMACHFLAGS=	-m68020
     54 .else
     55 CMACHFLAGS=	-m68060 -Wa,-m68030
     56 .endif
     57 CFLAGS=		${DEBUG} ${CWARNFLAGS} ${COPTS} ${CMACHFLAGS} -msoft-float 
     58 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     59 LINKFLAGS=	-n -Ttext 0 -e start
     60 STRIPFLAGS=	-g
     61 
     62 %INCLUDES
     63 
     64 HOSTED_CC=	${CC}
     65 HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
     66 HOSTED_CFLAGS=	${CFLAGS}
     67 
     68 ### find out what to use for libkern
     69 KERN_AS=	obj
     70 .include "$S/lib/libkern/Makefile.inc"
     71 .ifndef PROF
     72 LIBKERN=	${KERNLIB}
     73 .else
     74 LIBKERN=	${KERNLIB_PROF}
     75 .endif
     76 
     77 ### find out what to use for libcompat
     78 .include "$S/compat/common/Makefile.inc"
     79 .ifndef PROF
     80 LIBCOMPAT=	${COMPATLIB}
     81 .else
     82 LIBCOMPAT=	${COMPATLIB_PROF}
     83 .endif
     84 
     85 ### for the Motorola 68040 Floating Point Software Product
     86 .include "$S/arch/m68k/fpsp/Makefile.inc"
     87 
     88 ### for the Motorola 68060 Software Support Package
     89 .include "$S/arch/m68k/060sp/Makefile.inc"
     90 
     91 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     92 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     93 
     94 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     95 NOPROF_C=	${CC} ${CFLAGS} ${CPPFLAGS} -c $<
     96 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     97 
     98 HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
     99 
    100 %OBJS
    101 
    102 %CFILES
    103 
    104 %SFILES
    105 
    106 # load lines for config "xxx" will be emitted as:
    107 # xxx: ${SYSTEM_DEP} swapxxx.o
    108 #	${SYSTEM_LD_HEAD}
    109 #	${SYSTEM_LD} swapxxx.o
    110 #	${SYSTEM_LD_TAIL}
    111 SYSTEM_OBJ=	locore.o ${FPSP} \
    112 		param.o ioconf.o ${OBJS} ${LIBCOMPAT} ${LIBKERN}
    113 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
    114 SYSTEM_LD_HEAD=	@rm -f $@
    115 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
    116 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
    117 SYSTEM_LD_TAIL=	@${SIZE} $@; chmod 755 $@
    118 
    119 DEBUG?=
    120 .if ${DEBUG} == "-g"
    121 LINKFLAGS+=	-X
    122 SYSTEM_LD_TAIL+=; \
    123 		echo mv -f $@ $@.gdb; mv -f $@ $@.gdb; \
    124 		echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \
    125 		${STRIP} ${STRIPFLAGS} -o $@ $@.gdb
    126 .else
    127 LINKFLAGS+=	-S
    128 .endif
    129 
    130 %LOAD
    131 
    132 assym.h: ${ATARI}/atari/genassym.cf $S/kern/genassym.sh
    133 	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} \
    134 	< ${ATARI}/atari/genassym.cf >assym.h.tmp && \
    135 	mv -f assym.h.tmp assym.h
    136 
    137 param.c: $S/conf/param.c
    138 	rm -f param.c
    139 	cp $S/conf/param.c .
    140 
    141 param.o: param.c Makefile
    142 	${NORMAL_C}
    143 
    144 ioconf.o: ioconf.c
    145 	${NORMAL_C}
    146 
    147 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    148 	sh $S/conf/newvers.sh
    149 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    150 
    151 __CLEANKERNEL: .USE
    152 	@echo "${.TARGET}ing the kernel objects"
    153 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    154 	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
    155 
    156 __CLEANDEPEND: .USE
    157 	rm -f .depend
    158 
    159 clean: __CLEANKERNEL
    160 
    161 cleandir distclean: __CLEANKERNEL __CLEANDEPEND
    162 
    163 lint:
    164 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    165 	    ${CFILES} ioconf.c param.c | \
    166 	    grep -v 'static function .* unused'
    167 
    168 tags:
    169 	@echo "see $S/kern/Makefile for tags"
    170 
    171 links:
    172 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    173 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    174 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    175 	  sort -u | comm -23 - dontlink | \
    176 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    177 	sh makelinks && rm -f dontlink
    178 
    179 SRCS=	${ATARI}/atari/locore.s \
    180 	param.c ioconf.c ${CFILES} ${SFILES}
    181 depend: .depend
    182 .depend: ${SRCS} assym.h param.c
    183 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${ATARI}/atari/locore.s
    184 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    185 	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    186 	sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \
    187 	  ${CPPFLAGS} < ${ATARI}/atari/genassym.cf
    188 	@sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend
    189 	@rm -f assym.dep
    190 
    191 dependall: depend all
    192 
    193 
    194 # depend on root or device configuration
    195 autoconf.o conf.o: Makefile
    196  
    197 # depend on network or filesystem configuration 
    198 uipc_proto.o: Makefile 
    199 
    200 # depend on maxusers
    201 machdep.o: Makefile
    202 
    203 # depend on CPU configuration 
    204 locore.o pmap.o sys_machdep.o: Makefile
    205 
    206 
    207 locore.o: ${ATARI}/atari/locore.s assym.h
    208 	${NORMAL_S}
    209 
    210 # The install target can be redefined by putting a
    211 # install-kernel-${MACHINE_NAME} target into /etc/mk.conf
    212 MACHINE_NAME!=  uname -n
    213 install: install-kernel-${MACHINE_NAME}
    214 .if !target(install-kernel-${MACHINE_NAME}})
    215 install-kernel-${MACHINE_NAME}:
    216 	rm -f /onetbsd
    217 	ln /netbsd /onetbsd
    218 	cp netbsd /nnetbsd
    219 	mv /nnetbsd /netbsd
    220 .endif
    221 
    222 %RULES
    223