]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - examples/loadables/Makefile.in
bash-4.4 rc1 release
[thirdparty/bash.git] / examples / loadables / Makefile.in
index 027b0d249066d23fb572b310004bf3185538559b..1fad9db23fcd4f9c8658081808603fb5cd590529 100644 (file)
@@ -102,7 +102,7 @@ INC = -I. -I.. -I$(topdir) -I$(topdir)/lib -I$(topdir)/builtins -I${srcdir} \
 
 ALLPROG = print truefalse sleep finfo logname basename dirname \
          tty pathchk tee head mkdir rmdir printenv id whoami \
-         uname sync push ln unlink realpath strftime mypid
+         uname sync push ln unlink realpath strftime mypid setpgid
 OTHERPROG = necho hello cat pushd
 
 all:   $(SHOBJ_STATUS)
@@ -202,6 +202,10 @@ strftime:  strftime.o
 mypid: mypid.o
        $(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ mypid.o $(SHOBJ_LIBS)
 
+
+setpgid:       setpgid.o
+       $(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ setpgid.o $(SHOBJ_LIBS)
+
 # pushd is a special case.  We use the same source that the builtin version
 # uses, with special compilation options.
 #
@@ -278,4 +282,4 @@ push.o: push.c
 mkdir.o: mkdir.c
 realpath.o: realpath.c
 strftime.o: strftime.c
-mypid.o: mypid.c
+setpgid.o: setpgid.c