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.
12 lines
310 B
Makefile
12 lines
310 B
Makefile
CFLAGS = -ggdb -fsigned-char -fno-builtin -Wall -Wextra -Werror -pedantic
|
|
CFILES = $(wildcard *.c)
|
|
|
|
all:
|
|
@echo $(CFILES)
|
|
@gcc -m32 $(CFLAGS) $(CFILES) -o shell
|
|
|
|
arm:
|
|
@arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 $(CFLAGS) -c *.c
|
|
@arm-none-eabi-ar r libinterp.a *.o
|
|
@rm *.o
|