This commit is contained in:
r4
2021-11-16 23:23:54 +01:00
parent fc242be5ec
commit c8c5795a48
2 changed files with 231 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
LDFLAGS =
#CFLAGS = -Ofast -march=native -Wall -pedantic -Werror -lm
CFLAGS = -ggdb -march=native -Wall -pedantic -Werror -lm
CC = cc
EXE = exp
all: $(EXE)
$(EXE): main.c
$(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
.PHONY: clean
clean:
rm -f $(EXE)