gem5/system/alpha/palcode/Makefile
Ali Saidi ae7e8a4660 makefiles updated to make use of cross compile tools
console/Makefile:
    All tools are variables now
palcode/Makefile:
    tool names changed to variables, can build palcode on zizzer
2004-01-15 02:59:57 -05:00

30 lines
591 B
Makefile

#Makefile for palcode
#Works on alpha-linux and builds elf executable
#19 December 2003 - Ali Saidi
GAS = alpha-elf-as
CC = alpha-elf-g++
LD = alpha-elf-ld
#CFLAGS=-I ../h -E -P -D SIMOS -nostdinc -nostdinc++ -x c++
CFLAGS=-I . -E -P -D SIMOS -D BUILD_PALCODE -nostdinc -nostdinc++ -x c++
GASFLAGS=-m21164
LDFLAGS=-Ttext 0x4000
SOURCES=osfpal.s platform_tlaser.s
PREPROC := $(SOURCES:.s=.i)
OBJS := $(SOURCES:.s=.o)
%.i: %.s
$(CC) $(CFLAGS) $< > $@
%.o: %.i
$(GAS) $(GASFLAGS) -o $@ $<
all: $(PREPROC) $(OBJS)
$(LD) $(LDFLAGS) -o osfpal $(OBJS)
clean:
rm -f *.o *.i osfpal