usaa21/cv1/Makefile
Peter Petrek 34be285963 moze byt
2021-10-08 01:16:59 +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)