Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 730B

123456789101112131415161718192021222324
  1. BINARIES = main-two-cvs-while main-two-cvs-if main-one-cv-while main-two-cvs-while-extra-unlock
  2. HEADERS = mythreads.h main-header.h main-common.c pc-header.h
  3. CC=gcc -Werror
  4. all: $(BINARIES)
  5. clean:
  6. rm -f $(BINARIES)
  7. main-one-cv-while: main-one-cv-while.c $(HEADERS)
  8. $(CC) -o main-one-cv-while main-one-cv-while.c -Wall -pthread
  9. main-two-cvs-if: main-two-cvs-if.c $(HEADERS)
  10. $(CC) -o main-two-cvs-if main-two-cvs-if.c -Wall -pthread
  11. main-two-cvs-while: main-two-cvs-while.c $(HEADERS)
  12. $(CC) -o main-two-cvs-while main-two-cvs-while.c -Wall -pthread
  13. main-two-cvs-while-extra-unlock: main-two-cvs-while-extra-unlock.c $(HEADERS)
  14. $(CC) -o main-two-cvs-while-extra-unlock main-two-cvs-while-extra-unlock.c -Wall -pthread