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.
14 lines
301 B
Makefile
14 lines
301 B
Makefile
CFLAGS = -ggdb
|
|
CFILES = $(wildcard *.c)
|
|
|
|
all:
|
|
@echo $(CFILES)
|
|
@gcc -m32 $(CFLAGS) $(CFILES) -o shell
|
|
|
|
arm:
|
|
@mv shell.c shell.c.bak
|
|
@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
|
|
@mv shell.c.bak shell.c
|
|
@rm *.o
|