2024-02-25 13:55:52 -08:00
|
|
|
CC=gcc
|
2024-02-25 13:57:48 -08:00
|
|
|
CFLAGS=-Wall -Wextra -Wpedantic -O2 -std=c99
|
2024-02-25 13:56:31 -08:00
|
|
|
LDFLAGS=-lm
|
2024-02-25 13:55:52 -08:00
|
|
|
|
|
|
|
ifndef VERBOSE
|
|
|
|
.SILENT:
|
|
|
|
endif
|
|
|
|
|
|
|
|
all: clean resistormaid
|
|
|
|
|
2024-02-25 13:56:31 -08:00
|
|
|
resistormaid: resistormaid.c
|
|
|
|
$(CC) $(CFLAGS) resistormaid.c -o resistormaid $(LDFLAGS)
|
2024-02-25 13:55:52 -08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f resistormaid *.o
|