30 lines
434 B
Makefile
30 lines
434 B
Makefile
CC := gcc
|
|
CFLAGS := -Wall -Werror -I../include -pthread
|
|
|
|
OS := $(shell uname -s)
|
|
LIBS :=
|
|
ifeq ($(OS),Linux)
|
|
LIBS += -pthread
|
|
endif
|
|
|
|
SRCS := atomicity.c \
|
|
atomicity_fixed.c \
|
|
ordering.c \
|
|
ordering_fixed.c \
|
|
deadlock.c
|
|
|
|
OBJS := ${SRCS:c=o}
|
|
PROGS := ${SRCS:.c=}
|
|
|
|
.PHONY: all
|
|
all: ${PROGS}
|
|
|
|
${PROGS} : % : %.o Makefile
|
|
${CC} $< -o $@ ${LIBS}
|
|
|
|
clean:
|
|
rm -f ${PROGS} ${OBJS}
|
|
|
|
%.o: %.c Makefile
|
|
${CC} ${CFLAGS} -c $<
|