Remove GNUmakefile for Dilithium

This commit is contained in:
Douglas Stebila 2019-02-08 10:07:05 -05:00
parent 157977258c
commit 3203f115e5

View File

@ -1,15 +0,0 @@
LIB=libdilithium-iii_clean.a
SOURCES=$(wildcard *.c)
OBJECTS=$(patsubst %.c,%.o,$(SOURCES))
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99 -I../../../common $(EXTRAFLAGS)
all: $(LIB)
$(LIB): $(OBJECTS)
$(AR) -r $@ $(OBJECTS)
clean:
$(RM) $(OBJECTS)
$(RM) $(LIB)