initial commit

This commit is contained in:
2025-11-06 10:18:00 -07:00
commit 6a2c0ee2d8
9 changed files with 3059 additions and 0 deletions

22
makefile Normal file
View File

@@ -0,0 +1,22 @@
C_FILES = worm.c net.c hs.c cracksome.c stubs.c
H_FILES = worm.h
OFILES = worm.o net.o hs.o cracksome.o stubs.o
# Luckily, the original used no optimization
CFLAGS =
# Most sites will have to remove the "-D" -- send for our souped-up version
# of ctags becker@trantor.harris-atd.com
TAGS_FLAGS = -xDt
test: $(OFILES)
$(CC) -o test $(OFILES)
$(OFILES): worm.h
clean:
rm -f *.o *~ *.bak
tags:
ctags -xDt > tags
tar:
tar -cf foo.tar description Makefile $(C_FILES) $(H_FILES) x8113550.c