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.
36 lines
647 B
36 lines
647 B
SHELL := /bin/bash
|
|
|
|
# ============================================
|
|
# COMMANDS
|
|
|
|
CC = /usr/local/cuda/bin/nvcc -ccbin gcc
|
|
RM = rm -f
|
|
CFLAGS=-lm -O3 -I.
|
|
OBJ=meanshift.o meanshift_declarations.o
|
|
DEPS=meanshift_declarations.h
|
|
|
|
# ==========================================
|
|
# TARGETS
|
|
|
|
EXECUTABLES = meanshift
|
|
|
|
.PHONY: all clean
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
# ==========================================
|
|
# DEPENDENCIES (HEADERS)
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
.PRECIOUS: $(EXECUTABLES) $(OBJ)
|
|
|
|
# ==========================================
|
|
# EXECUTABLE (MAIN)
|
|
|
|
$(EXECUTABLES): $(OBJ)
|
|
$(CC) -o $@ $^ $(CFLAGS)
|
|
|
|
clean:
|
|
$(RM) *.o *~ $(EXECUTABLES)
|
|
|