-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.mipsgcc
60 lines (57 loc) · 2.35 KB
/
Makefile.mipsgcc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (c) 1996-1997 Swiss Federal Institute of Technology,
# Computer Engineering and Networks Laboratory. All rights reserved.
#
# TOPSY - A Teachable Operating System.
# Implementation of a tiny and simple micro kernel for
# teaching purposes.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose, without fee, and without written
# agreement is hereby granted, provided that the above copyright notice
# and the following two paragraphs appear in all copies of this software.
#
# IN NO EVENT SHALL THE SWISS FEDERAL INSTITUTE OF TECHNOLOGY, COMPUTER
# ENGINEERING AND NETWORKS LABORATORY BE LIABLE TO ANY PARTY FOR
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
# OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
# THE SWISS FEDERAL INSTITUTE OF TECHNOLOGY, COMPUTER ENGINEERING AND
# NETWORKS LABORATORY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# THE SWISS FEDERAL INSTITUTE OF TECHNOLOGY, COMPUTER ENGINEERING AND
# NETWORKS LABORATORY, SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
# ON AN "AS IS" BASIS, AND THE SWISS FEDERAL INSTITUTE OF TECHNOLOGY,
# COMPUTER ENGINEERING AND NETWORKS LABORATORY HAS NO OBLIGATION TO
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
#
# File: $Source: /proj/topsy/ss98/Topsy/RCS/Makefile.mips,v $
# Author(s):
# Affiliation: ETH Zuerich, TIK
# Version: $Revision: 1.3 $
# Creation Date:
# Last Date of Change: $Date: 1998/03/26 20:37:37 $ by: $Author: gfa $
#
#
# $Log: Makefile.mips,v $
# Revision 1.3 1998/03/26 20:37:37 gfa
# changed load addresses
#
# Revision 1.2 1997/04/13 16:21:43 gfa
# added user-in-kernel-at address
#
# Revision 1.1 1997/02/04 11:30:52 topsy
# Initial revision
#
#
# machine dependent subdirectories for each module and folder for object files
ARCH=mips
# address of memory layout description after loading
# needed by both kernel startup code (which passes the pointer to the
# memory manager) and the bootlinker
SEGMAP=800FFF00
USERINKERNELAT=80041000
HEXSEGMAP=0x$(SEGMAP)
MACHINE_CFLAGS=-mips1 -march=r3000 -mtune=r3000 -EB -fno-pic -mno-abicalls