aboutsummaryrefslogtreecommitdiff
path: root/examples/beginner/hello/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/beginner/hello/makefile')
-rw-r--r--examples/beginner/hello/makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/beginner/hello/makefile b/examples/beginner/hello/makefile
index 27ca670..f80d2aa 100644
--- a/examples/beginner/hello/makefile
+++ b/examples/beginner/hello/makefile
@@ -34,12 +34,6 @@ AFLAGS = -g -msoft-float
LDFLAGS = -g -Ttext=0x80010000 -gc-sections \
-T $(GCC_BASE)/mipsel-unknown-elf/lib/ldscripts/elf32elmip.x
-# Toolchain programs
-CC = $(PREFIX)gcc
-CXX = $(PREFIX)g++
-AS = $(PREFIX)as
-LD = $(PREFIX)ld
-
all: $(OFILES)
$(LD) $(LDFLAGS) $(LIBDIRS) $(OFILES) $(LIBS) -o $(TARGET)
elf2x -q $(TARGET)