summaryrefslogtreecommitdiff
path: root/system/alpha/palcode/Makefile
blob: 071c8bc3964ba5bd88cb4d10a1677aad7d110c03 (plain)
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
#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