Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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