Makefile 287 Bytes
Newer Older
Sebastian Renner committed
1
CC=gcc
Enrico Pozzobon committed
2 3
#NISTGCCFLAGS=-std=c99 -Wall -Wextra -Wshadow -fsanitize=address,undefined -O2
NISTGCCFLAGS=-std=c99 -Wall -Wextra -Wshadow -Os
Enrico Pozzobon committed
4

5
LFLAGS=-lm
Sebastian Renner committed
6

7
all: nocrypt
Sebastian Renner committed
8

9
nocrypt: nocrypt.c genkat_aead.c
10
	$(CC) $(NISTGCCFLAGS) -o $@ $^ $(LFLAGS)
Sebastian Renner committed
11

12
.PHONY: clean
Sebastian Renner committed
13 14

clean:
15 16
	rm -f *.o
	rm -f nocrypt
Sebastian Renner committed
17