Exercise 3 for the course "Parallel and distributed systems" of THMMY in AUTH university.
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.

37 lines
620 B

7 years ago
SHELL := /bin/bash
# ============================================
# COMMANDS
CC = gcc
RM = rm -f
CFLAGS=-lm -O3 -Wall -I.
OBJ=serial.o serial_declarations.o
DEPS=serial_declarations.h
7 years ago
# ==========================================
# TARGETS
EXECUTABLES = serial mean-shift
7 years ago
.PHONY: all clean
7 years ago
all: $(EXECUTABLES)
# ==========================================
# DEPENDENCIES (HEADERS)
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
.PRECIOUS: $(EXECUTABLES) $(OBJ)
# ==========================================
# EXECUTABLE (MAIN)
$(EXECUTABLES): $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)
7 years ago
clean:
$(RM) *.o *~ $(EXECUTABLES)