]> Zhao Yanbai Git Server - minix.git/commitdiff
Forgot include some Minix 3 specific changes.
authorPhilip Homburg <philip@cs.vu.nl>
Wed, 7 Jun 2006 15:03:42 +0000 (15:03 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Wed, 7 Jun 2006 15:03:42 +0000 (15:03 +0000)
commands/ash/Makefile

index 37799751eaef53b4ec29f4315012089d4606b089..239739325bd953aeb45ff91ad73dc89fc24d188f 100755 (executable)
@@ -50,12 +50,12 @@ all:        sh
 
 sh:    $(OBJS)
        $(CC) $(CFLAGS) -fnone -o sh $(OBJS) $(LIBS)
+       install -S 100k sh
 
-install:       /usr/bin/ash /usr/bin/sh /bin/sh /usr/man/man1/ash.1 \
-               /usr/man/man1/echo.1 /usr/man/man1/expr.1
+install:       /usr/bin/ash /usr/bin/sh /bin/sh /bin/bigsh
 
 /usr/bin/ash:  sh
-       install -c $? $@
+       install -cs -o bin $? $@
 
 /usr/bin/sh:   /usr/bin/ash
        install -l $? $@
@@ -63,14 +63,8 @@ install:     /usr/bin/ash /usr/bin/sh /bin/sh /usr/man/man1/ash.1 \
 /bin/sh:       /usr/bin/ash
        install -lcs $? $@
 
-/usr/man/man1/ash.1:   sh.1
-       install -lc $? $@
-
-/usr/man/man1/echo.1:  bltin/echo.1
-       install -lc $? $@
-
-/usr/man/man1/expr.1:  bltin/expr.1
-       install -lc $? $@
+/bin/bigsh:    /usr/bin/ash
+       install -S 1500000 -lcs $? $@
 
 clean:
        rm -f $(CLEANFILES) sh core