Makefile revision 8027:8d92e9995321
1# Copyright (c) 2005 2# The Regents of The University of Michigan 3# All Rights Reserved 4# 5# This code is part of the M5 simulator. 6# 7# Permission is granted to use, copy, create derivative works and 8# redistribute this software and such derivative works for any purpose, 9# so long as the copyright notice above, this grant of permission, and 10# the disclaimer below appear in all copies made; and so long as the 11# name of The University of Michigan is not used in any advertising or 12# publicity pertaining to the use or distribution of this software 13# without specific, written prior authorization. 14# 15# THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE 16# UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND WITHOUT 17# WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER EXPRESS OR 18# IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF 19# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF 20# THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR ANY DAMAGES, 21# INCLUDING DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 22# DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION 23# WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER 24# ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 25# 26# Authors: Nathan L. Binkert 27# Ali G. Saidi 28 29### If we are not compiling on an alpha, we must use cross tools ### 30ifneq ($(shell uname -m), alpha) 31CROSS_COMPILE?=alpha-unknown-linux-gnu- 32endif 33CC=$(CROSS_COMPILE)gcc 34AS=$(CROSS_COMPILE)as 35LD=$(CROSS_COMPILE)ld 36 37DBMENTRY= fffffc0000010000 38CFLAGS=-I . -I ../h -I$(M5)/src/dev -I$(M5)/util/m5/ -fno-builtin -Wa,-m21164 39OBJS=dbmentry.o printf.o paljtokern.o paljtoslave.o console.o m5op.o 40 41### Make sure that the M5 variable is set ### 42ifndef M5 43$(error The M5 variable must be set) 44endif 45 46all: console 47 48m5op.o: $(M5)/util/m5/m5op.S 49 $(CC) $(CFLAGS) -nostdinc -o $@ -c $< 50 51%.o: %.S 52 $(CC) $(CFLAGS) -nostdinc -o $@ -c $< 53 54%.o: %.c 55 $(CC) -g3 $(CFLAGS) -o $@ -c $< 56 57console: $(OBJS) 58 $(LD) -o console -N -Ttext $(DBMENTRY) -non_shared $(OBJS) -lc 59 60clean: 61 rm -f *.o console 62