commit 094cce659827a5901456629e2a417e7427c7a304 parent 838321c37d1b9e9dcc0e898ebef320a89114cd08 Author: erai <erai@omiltem.net> Date: Sat, 21 Sep 2024 11:20:35 -0400 move currently unused files to attic Diffstat:
14 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/aes.c b/attic/aes.c diff --git a/cc3.l b/attic/cc3.l diff --git a/cc3.y b/attic/cc3.y diff --git a/chacha20_test.c b/attic/chacha20_test.c diff --git a/ed25519_test.c b/attic/ed25519_test.c diff --git a/lex1.c b/attic/lex1.c diff --git a/parse1.c b/attic/parse1.c diff --git a/poly1305_test.c b/attic/poly1305_test.c diff --git a/pxe.asm b/attic/pxe.asm diff --git a/rsa.c b/attic/rsa.c diff --git a/sha256_test.c b/attic/sha256_test.c diff --git a/sha512_test.c b/attic/sha512_test.c diff --git a/x25519_test.c b/attic/x25519_test.c diff --git a/build.sh b/build.sh @@ -2,14 +2,13 @@ LIBS="bufio.c lib.c alloc.c syscall.c" CRYPTO="ed25519.c sha512.c sha256.c chacha20.c poly1305.c" -CC="cc1.c type.c parse1.c lex1.c as.c decl.c node.c" +CC="cc1.c type.c as.c decl.c node.c" PEG="peg.c peglib.c parsepeg.c" -BOOT="pxe.asm" SSHD="chacha20.c poly1305.c sha256.c sha512.c ed25519.c sshd.c" KERNEL="kernel.c" SHELL="echo.c cmp.c rm.c ls.c cat.c xxd.c mv.c mkdir.c cpio.c sh.c" BIN="echo cmp rm ls cat xxd mv mkdir cpio sh sshd init cc1 cc2 build.sh peg.peg cc3.peg" -ALL="${LIBS} ${CC} ${PEG} ${BOOT} ${SSHD} ${KERNEL} ${SHELL} ${BIN}" +ALL="${LIBS} ${CC} ${PEG} ${SSHD} ${KERNEL} ${SHELL} ${BIN}" ./cc1 ${LIBS} echo.c -o echo ./cc1 ${LIBS} cmp.c -o cmp