8 lines
154 B
Makefile
8 lines
154 B
Makefile
CFLAGS=-std=c99
|
|
INDENTOPTS=-kr --no-tabs --braces-on-func-def-line --indent-level2
|
|
|
|
all: approximate-pi
|
|
|
|
.PHONY: indent
|
|
indent:
|
|
indent $(INDENTOPTS) *.c
|