]> Git Repo - haraka-avx512.git/blame - Makefile
run
[haraka-avx512.git] / Makefile
CommitLineData
23e3fea5 1C=gcc
2RM=rm -f
3CFLAGS=-g -O3 -march=native -funroll-all-loops -fomit-frame-pointer -mavx512f
4SRCS=main.c haraka.c aes.c
5OBJS=$(subst .c,.o,$(SRCS))
6OUTFILE="haraka"
7
8all: haraka
9
10haraka: $(OBJS)
11 $(C) -o $(OUTFILE) $(OBJS) $(LDLIBS)
12
13depend: .depend
14
15.depend: $(SRCS)
16 rm -f ./.depend
17 $(C) $(CFLAGS) -MM $^>>./.depend;
18
19clean:
20 $(RM) $(OBJS)
21
22dist-clean: clean
23 $(RM) *~ .depend
24
25include .depend
This page took 0.023135 seconds and 4 git commands to generate.