Math task finished.

This commit is contained in:
2024-09-16 14:46:12 +03:00
commit 04fd6c2065
5 changed files with 49 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-Wall -O3
TDIR=target/
objects = strings ll
all: $(objects) maths
maths: maths.c
$(CC) $(CFLAGS) -o $(TDIR)$@ $< -lm
$(objects): %: %.c
$(CC) $(CFLAGS) -o $(TDIR)$@ $<