You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
219 B
Makefile
13 lines
219 B
Makefile
3 years ago
|
|
||
|
CC = riscv32-unknown-elf-gcc
|
||
|
CFLAGS = -nostdlib -mcmodel=medany -Wall -Wextra -pedantic-errors -T ../linker.ld
|
||
|
|
||
|
simple:
|
||
|
$(CC) $(CFLAGS) -o simple simple.c
|
||
|
|
||
|
spawn:
|
||
|
$(CC) $(CFLAGS) -o spawn spawn.c
|
||
|
|
||
|
all: simple spawn
|
||
|
|