summaryrefslogtreecommitdiff
path: root/other/shellkit/mips_irix/Makefile
diff options
context:
space:
mode:
authorRoot THC2026-02-24 12:42:47 +0000
committerRoot THC2026-02-24 12:42:47 +0000
commitc9cbeced5b3f2bdd7407e29c0811e65954132540 (patch)
treeaefc355416b561111819de159ccbd86c3004cf88 /other/shellkit/mips_irix/Makefile
parent073fe4bf9fca6bf40cef2886d75df832ef4b6fca (diff)
initial
Diffstat (limited to 'other/shellkit/mips_irix/Makefile')
-rw-r--r--other/shellkit/mips_irix/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/other/shellkit/mips_irix/Makefile b/other/shellkit/mips_irix/Makefile
new file mode 100644
index 0000000..a68d231
--- /dev/null
+++ b/other/shellkit/mips_irix/Makefile
@@ -0,0 +1,22 @@
1
2#DFLAGS=-O2
3DFLAGS=-g -ggdb
4CC=gcc
5CFLAGS=$(DFLAGS) -Wall -DIRIX
6
7all:
8 $(CC) $(CFLAGS) -o chmod ../codedump.c chmod.s
9 $(CC) $(CFLAGS) -o chroot ../codedump.c chroot.s
10 $(CC) $(CFLAGS) -o connectsh ../codedump.c connectsh.s
11 $(CC) $(CFLAGS) -o execvesh ../codedump.c execvesh.s
12 $(CC) $(CFLAGS) -o exit ../codedump.c exit.s
13 $(CC) $(CFLAGS) -o portshellsh ../codedump.c portshellsh.s
14 $(CC) $(CFLAGS) -o read ../codedump.c read.s
15 $(CC) $(CFLAGS) -o setgid ../codedump.c setgid.s
16 $(CC) $(CFLAGS) -o setreuid ../codedump.c setreuid.s
17
18clean:
19 rm -f code.h codetest \
20 chmod chroot connectsh execvesh exit portshellsh read \
21 setgid setreuid
22