mpu6050/Makefile

10 lines
156 B
Makefile
Raw Normal View History

2024-01-09 19:15:14 +00:00
CC=gcc
2024-01-09 21:03:01 +00:00
CFLAG=-O0 -std=c89 -Wall -Wextra -W -pedantic -I.
2024-01-09 19:15:14 +00:00
CFILES=$(wildcard *.c)
BIN=mpu6050
all:
$(CC) $(CFLAG) $(CFILES) -o $(BIN)
clean:
rm -rf $(BIN)