Home | History | Annotate | Line # | Download | only in conf
Makefile.hp300 revision 1.78.2.1
      1  1.78.2.1   thorpej #	$NetBSD: Makefile.hp300,v 1.78.2.1 2002/01/10 19:42:47 thorpej Exp $
      2      1.20       cgd 
      3      1.12    brezak # Makefile for NetBSD
      4       1.1       cgd #
      5       1.1       cgd # This makefile is constructed from a machine description:
      6       1.1       cgd #	config machineid
      7       1.1       cgd # Most changes should be made in the machine description
      8      1.14   mycroft #	/sys/arch/hp300/conf/``machineid''
      9       1.1       cgd # after which you should do
     10      1.31   mycroft #	config machineid
     11       1.1       cgd # Machine generic makefile changes should be made in
     12      1.14   mycroft #	/sys/arch/hp300/conf/Makefile.hp300
     13       1.1       cgd # after which config should be rerun for all machines of that type.
     14  1.78.2.1   thorpej #
     15  1.78.2.1   thorpej # To specify debugging, add the config line: makeoptions DEBUG="-g"
     16  1.78.2.1   thorpej # A better way is to specify -g only for a few files.
     17  1.78.2.1   thorpej #
     18  1.78.2.1   thorpej #	makeoptions DEBUGLIST="uvm* trap if_*"
     19       1.1       cgd 
     20  1.78.2.1   thorpej MACHINE_ARCH=m68k
     21  1.78.2.1   thorpej USETOOLS?=	no
     22  1.78.2.1   thorpej NEED_OWN_INSTALL_TARGET?=no
     23  1.78.2.1   thorpej .include <bsd.own.mk>
     24  1.78.2.1   thorpej 
     25  1.78.2.1   thorpej ##
     26  1.78.2.1   thorpej ## (1) port identification
     27  1.78.2.1   thorpej ##
     28  1.78.2.1   thorpej HP300=		$S/arch/hp300
     29  1.78.2.1   thorpej GENASSYM=	${HP300}/hp300/genassym.cf
     30  1.78.2.1   thorpej 
     31  1.78.2.1   thorpej ##
     32  1.78.2.1   thorpej ## (2) compile settings
     33  1.78.2.1   thorpej ##
     34  1.78.2.1   thorpej CPPFLAGS+=	-Dhp300
     35  1.78.2.1   thorpej CFLAGS+=	-msoft-float
     36  1.78.2.1   thorpej AFLAGS+=	-x assembler-with-cpp -traditional-cpp
     37  1.78.2.1   thorpej 
     38  1.78.2.1   thorpej ##
     39  1.78.2.1   thorpej ## (3) libkern and compat
     40  1.78.2.1   thorpej ##
     41      1.65  drochner KERN_AS=	obj
     42      1.23  christos 
     43  1.78.2.1   thorpej ##
     44  1.78.2.1   thorpej ## (4) local objects, compile rules, and dependencies
     45  1.78.2.1   thorpej ##
     46  1.78.2.1   thorpej # for the Motorola 68040 Floating Point Software Product
     47      1.17   mycroft .include "$S/arch/m68k/fpsp/Makefile.inc"
     48      1.17   mycroft 
     49  1.78.2.1   thorpej MD_OBJS=	locore.o ${FPSP}
     50  1.78.2.1   thorpej MD_CFILES=
     51  1.78.2.1   thorpej MD_SFILES=	${HP300}/hp300/locore.s
     52  1.78.2.1   thorpej 
     53  1.78.2.1   thorpej locore.o: ${HP300}/hp300/locore.s assym.h
     54  1.78.2.1   thorpej 	${NORMAL_S}
     55  1.78.2.1   thorpej 
     56  1.78.2.1   thorpej ##
     57  1.78.2.1   thorpej ## (5) link settings
     58  1.78.2.1   thorpej ##
     59  1.78.2.1   thorpej LINKFORMAT=	-n
     60  1.78.2.1   thorpej TEXTADDR?=	0
     61  1.78.2.1   thorpej 
     62  1.78.2.1   thorpej ##
     63  1.78.2.1   thorpej ## (6) port specific target dependencies
     64  1.78.2.1   thorpej ##
     65       1.1       cgd 
     66  1.78.2.1   thorpej # depend on CPU configuration
     67  1.78.2.1   thorpej dma.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
     68       1.1       cgd 
     69  1.78.2.1   thorpej ##
     70  1.78.2.1   thorpej ## (7) misc settings
     71  1.78.2.1   thorpej ##
     72  1.78.2.1   thorpej 
     73  1.78.2.1   thorpej ##
     74  1.78.2.1   thorpej ## (8) config(8) generated machinery
     75  1.78.2.1   thorpej ##
     76  1.78.2.1   thorpej %INCLUDES
     77      1.41   mycroft 
     78       1.1       cgd %OBJS
     79       1.1       cgd 
     80       1.1       cgd %CFILES
     81       1.1       cgd 
     82      1.32   mycroft #%SFILES
     83      1.31   mycroft 
     84       1.1       cgd %LOAD
     85       1.1       cgd 
     86       1.1       cgd %RULES
     87  1.78.2.1   thorpej 
     88  1.78.2.1   thorpej ##
     89  1.78.2.1   thorpej ## (9) port independent kernel machinery
     90  1.78.2.1   thorpej ##
     91  1.78.2.1   thorpej .include "$S/conf/Makefile.kern.inc"
     92