Question: See image, In C programming. make file prrovided: CC = gcc CFLAGS + = - Wall - g OBJECTS = all: Exercise 1 1 _

See image, In C programming.
make file prrovided:
CC=gcc
CFLAGS+=-Wall -g
OBJECTS=
all: Exercise11_4a.c Exercise11_4b.c
$(CC) $(CFLAGS) Exercise11_4a.c -o Exercise11_4a -lpthread
$(CC) $(CFLAGS) Exercise11_4b.c -o Exercise11_4b -lpthread
clean:
rm -f *~
rm -f *.o
rm -f Exercise11_4a
rm -f Exercise11_4b
run:
./Exercise11_4a&
./Exercise11_4b&
kill:
killall -q Exercise11_4a
killall -q Exercise11_4b
 See image, In C programming. make file prrovided: CC=gcc CFLAGS+=-Wall -g

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!