forked from bwsw/rt-motion-detection-opencv-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (30 loc) · 874 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
RM = \rm -f
ECHO = /bin/echo -e
CC = gcc
BIN_DIR = ./bounding_boxes/bin
NAME = $(BIN_DIR)/libmotion_detector_optimization.so
SRC_DIR = src
SRCS = $(SRC_DIR)/scanner.c \
$(SRC_DIR)/coord_list.c \
$(SRC_DIR)/find_bounding_boxes.c \
$(SRC_DIR)/bounding_box_data_struct.c \
$(SRC_DIR)/packer.c \
$(SRC_DIR)/packer_data_structs.c
OBJS = $(SRCS:.c=.o)
CFLAGS = -W -Wall -Werror -Wextra -fPIC -O3 \
`pkg-config --cflags python3` \
-I$(SRC_DIR) \
-I`python3 -m site --user-site`/numpy/core/include
LIBS = `pkg-config --libs python3`
all: $(NAME)
$(NAME): $(OBJS)
@mkdir -p $(BIN_DIR)
$(CC) $(OBJS) -o $(NAME) -shared $(LIBS)
clean:
$(RM) $(OBJS)
fclean: clean
$(RM) -r $(BIN_DIR)
re: fclean all
.c.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
.PHONY: all clean fclean re