some-usable-scripts/c/by-line/Makefile

10 lines
151 B
Makefile

CC ?= clang
CFLAGS ?= -Wall -Wextra -std=c11
all: compilation
compilation: by-line
by-line: by-line.c
$(Q)$(CC) -o by-line $(CFLAGS) $(LDFLAGS) $^