From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- other/shellkit/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 other/shellkit/Makefile (limited to 'other/shellkit/Makefile') diff --git a/other/shellkit/Makefile b/other/shellkit/Makefile new file mode 100644 index 0000000..ff69bd9 --- /dev/null +++ b/other/shellkit/Makefile @@ -0,0 +1,24 @@ + +#DFLAGS=-O2 +DFLAGS=-g -ggdb +CC=gcc +CFLAGS=$(DFLAGS) -Wall +OBJS= shellcode.o \ + hppa.o hppa_hpux.o \ + mips.o mips_irix.o \ + sparc.o sparc_solaris.o \ + x86.o x86_bsd.o x86_linux.o \ + +all: shellkit splocoder + +clean: + rm -f *.o shellkit + rm -f splocoder + +shellkit: $(OBJS) + $(CC) $(CFLAGS) -o shellkit shellkit.c $(OBJS) + +splocoder: splocoder.c + $(CC) $(CFLAGS) -o splocoder splocoder.c + + -- cgit v1.3