cleanup makefile and fix platform bug introduced in last commit
palcode/Makefile: Cleanup make file, no more ugly preprocessing steps palcode/platform_m5.S: fix a mistake with m5 platform cleanup from before
This commit is contained in:
parent
8cfbcbdb9c
commit
8d148125f2
11 changed files with 21313 additions and 21317 deletions
|
@ -1,40 +1,36 @@
|
||||||
#Makefile for palcode
|
#Makefile for palcode
|
||||||
#Works on alpha-linux and builds elf executable
|
#Works on alpha-linux and builds elf executable
|
||||||
|
|
||||||
#19 December 2003 - Ali Saidi
|
|
||||||
|
|
||||||
GAS = alpha-elf-as
|
GAS = alpha-elf-as
|
||||||
CC = alpha-elf-g++
|
CC = alpha-elf-g++
|
||||||
LD = alpha-elf-ld
|
LD = alpha-elf-ld
|
||||||
#CFLAGS=-I ../h -E -P -D SIMOS -nostdinc -nostdinc++ -x c++
|
CFLAGS=-I . -I ../h -D SIMOS -D BUILD_PALCODE -nostdinc -nostdinc++ -Wa,-m21164
|
||||||
CFLAGS=-I . -I ../h -E -P -D SIMOS -D BUILD_PALCODE -nostdinc -nostdinc++ -x c++
|
|
||||||
GASFLAGS=-m21164
|
|
||||||
LDFLAGS=-Ttext 0x4000
|
LDFLAGS=-Ttext 0x4000
|
||||||
|
|
||||||
SOURCES=osfpal.s osfpal_cache_copy.s osfpal_cache_copy_unaligned.s platform_tlaser.s \
|
TLOBJS = osfpal.o platform_tlaser.o
|
||||||
platform_m5.s
|
TLOBJS_COPY = osfpal_cache_copy.o osfpal_cache_copy_unaligned.o
|
||||||
PREPROC := $(SOURCES:.s=.i)
|
TSOBJS = osfpal.o platform_m5.o
|
||||||
TLOBJS = osfpal.o osfpal_cache_copy.o osfpal_cache_copy_unaligned.o platform_tlaser.o
|
TSOBJS_COPY = osfpal_cache_copy.o osfpal_cache_copy_unaligned.o
|
||||||
TSOBJS = osfpal.o osfpal_cache_copy.o osfpal_cache_copy_unaligned.o platform_m5.o
|
|
||||||
|
|
||||||
%.i: %.s
|
%.o: %.S
|
||||||
$(CC) $(CFLAGS) $< > $@
|
$(CC) $(CFLAGS) -o $@ -c $<
|
||||||
|
|
||||||
%.o: %.i
|
|
||||||
$(GAS) $(GASFLAGS) -o $@ $<
|
|
||||||
|
|
||||||
all: tlaser tsunami
|
all: tlaser tsunami
|
||||||
|
|
||||||
tlaser: $(PREPROC) $(TLOBJS)
|
tlaser: $(TLOBJS)
|
||||||
$(LD) $(LDFLAGS) -o tl_osfpal osfpal.o platform_tlaser.o
|
$(LD) $(LDFLAGS) -o tl_osfpal osfpal.o platform_tlaser.o
|
||||||
|
|
||||||
|
tlaser_copy: $(TLOBJS_COPY) $(TLOBJS)
|
||||||
$(LD) $(LDFLAGS) -o tl_osfpal_cache osfpal_cache_copy.o platform_tlaser.o
|
$(LD) $(LDFLAGS) -o tl_osfpal_cache osfpal_cache_copy.o platform_tlaser.o
|
||||||
$(LD) $(LDFLAGS) -o tl_osfpal_unalign osfpal_cache_copy_unaligned.o platform_tlaser.o
|
$(LD) $(LDFLAGS) -o tl_osfpal_unalign osfpal_cache_copy_unaligned.o platform_tlaser.o
|
||||||
|
|
||||||
tsunami: $(PREPROC) $(TSOBJS)
|
tsunami: $(TSOBJS)
|
||||||
$(LD) $(LDFLAGS) -o ts_osfpal osfpal.o platform_m5.o
|
$(LD) $(LDFLAGS) -o ts_osfpal osfpal.o platform_m5.o
|
||||||
|
|
||||||
|
tsunami_copy: $(TSOBJS) $(TSOBJS_COPY)
|
||||||
$(LD) $(LDFLAGS) -o ts_osfpal_cache osfpal_cache_copy.o platform_m5.o
|
$(LD) $(LDFLAGS) -o ts_osfpal_cache osfpal_cache_copy.o platform_m5.o
|
||||||
$(LD) $(LDFLAGS) -o ts_osfpal_unalign osfpal_cache_copy_unaligned.o platform_m5.o
|
$(LD) $(LDFLAGS) -o ts_osfpal_unalign osfpal_cache_copy_unaligned.o platform_m5.o
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o *.i tl_osfpal tl_osfpal_cache tl_osfpal_unalign ts_osfpal \
|
rm -f *.o tl_osfpal tl_osfpal_cache tl_osfpal_unalign ts_osfpal \
|
||||||
ts_osfpal_cache ts_osfpal_unalign
|
ts_osfpal_cache ts_osfpal_unalign
|
||||||
|
|
5242
system/alpha/palcode/osfpal.S
Normal file
5242
system/alpha/palcode/osfpal.S
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
5257
system/alpha/palcode/osfpal_cache_copy.S
Normal file
5257
system/alpha/palcode/osfpal_cache_copy.S
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
5253
system/alpha/palcode/osfpal_cache_copy_unaligned.S
Normal file
5253
system/alpha/palcode/osfpal_cache_copy_unaligned.S
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
2726
system/alpha/palcode/platform_m5.S
Normal file
2726
system/alpha/palcode/platform_m5.S
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
2821
system/alpha/palcode/platform_tlaser.S
Normal file
2821
system/alpha/palcode/platform_tlaser.S
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue