# # # sample Makefile for gcc with POSIX threads # # usage example: # "make hello" to compile "hello.c" to "hello" # OPT = -O CFLAGS = -Wall -pedantic -pthread $(OPT)