usaa21/a2/Makefile

12 lines
135 B
Makefile
Raw Permalink Normal View History

2022-01-19 15:52:37 +00:00
# variables
CC=gcc
CFLAGS=-std=c11 -Wall -Werror
LDLIBS=-lm
OUTPUT=$@
# targets
%: %.c
$(CC) $(CFLAGS) $@.c $(LDLIBS) -o $(OUTPUT)