aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1a121558e06763c694e004463be6d74ba6654f55 (plain)
1
2
3
4
5
6
7
8
9
CC=gcc
CFLAGS=-O2 -Wall -Wextra -mtune=native
all: fsbm

fsbm: fsbm.c
	$(CC) fsbm.c -o fsbm $(CFLAGS)

clean: 
	@rm fsbm