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.

16 lines
273 B
Makefile

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
thread:
$(CC) $(CFLAGS) -o threads threads.c
all: simple spawn thread