aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 6057c1fa480aa5cc823636d6fcb9a91d892feb1c (plain)
1
2
3
4
5
6
7
8
9
10
CC := gcc -DFOCI_X86_64
#CC := arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -DFOCI_ARM
#CC := msp430-elf-gcc -DFOCI_MSP430 -mmcu=msp430g2553
CFLAGS := -O3 -ggdb -g3 -Wall -Wextra

all: foci
	$(CC) $(CFLAGS) main.c foci.o -o main

foci:
	$(CC) $(CFLAGS) -c foci.c