usaa21/cv3/Makefile
Peter Petrek 082ff00be7 test
2021-10-21 20:53:21 +02:00

12 lines
135 B
Makefile

# variables
CC=gcc
CFLAGS=-std=c11 -Wall -Werror
LDLIBS=-lm
OUTPUT=$@
# targets
%: %.c
$(CC) $(CFLAGS) $@.c $(LDLIBS) -o $(OUTPUT)