all repos — TinyCrypT @ 7906aa7e16857901026e3caf74e04e0a4d5c7547

Short and sweet classical cryptographic primitives

Forgot to delete the Makefile
Juniper Beatitudes [email protected]
Thu, 01 Jan 2026 16:01:53 -0600
commit

7906aa7e16857901026e3caf74e04e0a4d5c7547

parent

1be36bbd35f0b78eb24de5535e360b05a4271d4b

1 files changed, 0 insertions(+), 26 deletions(-)

jump to
D Makefile

@@ -1,26 +0,0 @@

-CC ?= gcc -AR ?= ar -INCLUDE_PATH := . -SOURCE_FILES := $(wildcard tinycrypt/*.c) -SOURCE_OBJECTS := $(SOURCE_FILES:tinycrypt/%.c=lib/%.o) -TEST_SOURCE_FILES := tinycrypt/tests/*.c -COMPILER_OPTS := -ffreestanding -std=c99 -OPTIMIZE_LEVEL := -O3 - -test-main: $(SOURCE_OBJECTS) $(TEST_SOURCE_FILES) - @ $(CC) -o test-main -O3 -I$(INCLUDE_PATH) $(SOURCE_OBJECTS) $(TEST_SOURCE_FILES) - -tests: test-main - @ ./test-main - -memcheck: test-main - @ valgrind ./test-main - -lib/%.o: tinycrypt/%.c - @ $(CC) -c $(COMPILER_OPTS) $(OPTIMIZE_LEVEL) -I$(INCLUDE_PATH) $< -o $@ - -lib: $(SOURCE_OBJECTS) - @ $(AR) rcs lib/libtinycrypt.a lib/*.o - -clean: - @- rm lib/*.o test-main