complete keygen program

This commit is contained in:
stitchy 2023-12-06 21:00:18 +00:00
parent c5b2c0acf9
commit fdeb0b4cb8
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
2 changed files with 52 additions and 0 deletions

13
pads/makefile Normal file
View file

@ -0,0 +1,13 @@
CC=gcc --std=gnu99 -g
all: keygen
echo Everything Made
keygen: keygen.c
$(CC) keygen.c -o keygen
run: all
./$(output)
clean:
rm -fr *.o vgcore.* $(output)