Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
17 lines
226 B
Makefile
17 lines
226 B
Makefile
TARGET = libcrypto.a
|
|
OBJS = hash/sha256.o
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(OBJS)
|
|
$(AR) rcs $@ $^
|
|
|
|
%.o: %.asm
|
|
$(AS) $< $@
|
|
|
|
clean:
|
|
$(RM) $(TARGET) $(OBJS)
|
|
|
|
install: $(TARGET)
|
|
@ mkdir -p $(DESTDIR)
|
|
install $(TARGET) $(DESTDIR)
|