usaa21/cv2/Makefile
Peter Petrek 924e6cea5b test
2021-10-14 23:21:36 +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)