diff options
Diffstat (limited to 'system/alpha/console/Makefile')
-rw-r--r-- | system/alpha/console/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/system/alpha/console/Makefile b/system/alpha/console/Makefile index 48a6288a3..5905fa9d2 100644 --- a/system/alpha/console/Makefile +++ b/system/alpha/console/Makefile @@ -7,10 +7,8 @@ INCLUDES = -I$(PALCODE) -I$(INCLUDEH) -I$(M5)/dev SOURDIR = ./ PALCODE = ../palcode INCLUDEH = ../h -AS=alpha-elf-as -CC=alpha-elf-gcc -CXX=alpha-elf-$(CXX) - +CC=gcc +AS=gas dbmentry.o: dbmentry.s $(AS) $(INCLUDES) -nointrinsics -o $*.o $*.s @@ -22,12 +20,12 @@ printf.o: printf.c $(CC) -g3 $(INCLUDES) -nointrinsics -o $*.o -c $*.c paljtokern.s.o: paljtokern.s - $(CXX) -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtokern.s | \ - $(AS) -m 21164 -o paljtokern.s.o + g++ -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtokern.s | \ + gas -m 21164 -o paljtokern.s.o paljtoslave.s.o: paljtoslave.s - $(CXX) -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtoslave.s | \ - $(AS) -m 21164 -o paljtoslave.s.o + g++ -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtoslave.s | \ + gas -m 21164 -o paljtoslave.s.o paljtokern.c: paljtokern.s.o echo 'unsigned int palJToKern[] = {' > paljtokern.c |