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.
18 lines
382 B
Makefile
18 lines
382 B
Makefile
CFLAGS := -O3 -ggdb -g3 -Wall -Wextra -I.
|
|
|
|
all: x86-64
|
|
|
|
clean:
|
|
rm -f main foci.o
|
|
|
|
x86-64: CC := gcc -DFOCI_X86_64
|
|
x86-64: x86/main.c foci.o
|
|
$(CC) $(CFLAGS) $^ -o main
|
|
|
|
arm-cm4: CC := arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -DFOCI_ARM
|
|
arm-cm4: foci.o
|
|
|
|
msp430: CC := msp430-elf-gcc -DFOCI_MSP430 -mmcu=msp430g2553
|
|
msp430: msp430/main.c foci.o
|
|
$(CC) $(CFLAGS) -Lmsp430 $^ -o main
|