Skip to content

Commit addc669

Browse files
committed
Code cleanup
Signed-off-by: Adrien Gallouët <[email protected]>
1 parent f780eca commit addc669

File tree

4 files changed

+150
-206
lines changed

4 files changed

+150
-206
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
CFLAGS=-march=native -O2
2-
LDLIBS=-lsodium
1+
CC = cc
2+
CFLAGS = -Wall -O2
3+
LDLIBS = -lsodium
34

45
test:
6+
$(CC) $(CFLAGS) -o test test.c $(LDLIBS)
57

6-
.PHONY: clean
78
clean:
89
rm -f test
10+
11+
.PHONY: test clean

0 commit comments

Comments
 (0)