2024-02-26 00:55:52 +03:00
|
|
|
CC=gcc
|
|
|
|
CFLAGS=-Wall -O2
|
2024-02-26 00:56:31 +03:00
|
|
|
LDFLAGS=-lm
|
2024-02-26 00:55:52 +03:00
|
|
|
|
|
|
|
ifndef VERBOSE
|
|
|
|
.SILENT:
|
|
|
|
endif
|
|
|
|
|
|
|
|
all: clean resistormaid
|
|
|
|
|
2024-02-26 00:56:31 +03:00
|
|
|
resistormaid: resistormaid.c
|
|
|
|
$(CC) $(CFLAGS) resistormaid.c -o resistormaid $(LDFLAGS)
|
2024-02-26 00:55:52 +03:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f resistormaid *.o
|