Initial commit

This commit is contained in:
2025-08-10 08:09:46 -04:00
commit 9edfa5f379
8 changed files with 2050 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
CC = gcc
CFLAGS = -Wall -Wextra -std=c99
LIBS = -lssl -lcrypto
TARGET = otp
SOURCE = otp.c
$(TARGET): $(SOURCE)
$(CC) $(CFLAGS) -o $(TARGET) $(SOURCE) $(LIBS)
clean:
rm -f $(TARGET) *.pad *.state
install:
sudo cp $(TARGET) /usr/local/bin/
uninstall:
sudo rm -f /usr/local/bin/$(TARGET)
.PHONY: clean install uninstall