14 lines
142 B
Makefile
14 lines
142 B
Makefile
|
CC=gcc
|
||
|
CFLAGS=-Wall -O2
|
||
|
|
||
|
ifndef VERBOSE
|
||
|
.SILENT:
|
||
|
endif
|
||
|
|
||
|
all: clean resistormaid
|
||
|
|
||
|
resistormaid: resistormaid.o
|
||
|
|
||
|
clean:
|
||
|
rm -f resistormaid *.o
|