-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
77 lines (55 loc) · 1.63 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.PHONY: clean_all clean_obj doc
CC = gcc
CFLAGS = -Wall -Wextra -Iinclude
# List of Source files
SRC = $(wildcard src/*.c)
# List of header files
HDR = $(wildcard include/*.h)
# List of Source files except the memory_manager_test
LIB_SRC = $(filter-out src/memory_manager_test.c, $(wildcard src/*.c))
# List of object files
OBJ = $(SRC:src/%.c=bin/%.o)
# List of object files for shared build
OBJ_SHARED = $(LIB_SRC:src/%.c=bin/%_shared.o)
# List of object files for static build
OBJ_STATIC = $(LIB_SRC:src/%.c=bin/%_static.o)
# Name of the executable
TARGET = bin/hmm
# Name of the static library
STATIC_LIB = lib/lib$(TARGET).a
# Name of the shared library
SHARED_LIB = lib/lib$(TARGET).so
# Command to remove files
RM = rm -f
# Default target
all: $(TARGET)
# Rules to link object files and create the executable
$(TARGET): $(OBJ)
$(CC) $(CFLAGS) -o $@ $^
$(RM) $(OBJ)
# Static library target
static: $(OBJ_STATIC)
ar rcs $(STATIC_LIB) $(OBJ_STATIC)
$(RM) $(OBJ_STATIC)
# Shared library target
shared: $(OBJ_SHARED)
$(CC) -shared -o $(SHARED_LIB) $(OBJ_SHARED)
$(RM) $(OBJ_SHARED)
# Rule to compile C source files into object files
bin/%.o: src/%.c $(HDR)
$(CC) $(CFLAGS) -c $< -o $@
# Rule to compile C source files to object files for shared build
bin/%_shared.o: src/%.c $(HDR)
$(CC) $(CFLAGS) -fPIC -c $< -o $@
# Rule to compile C source files to object files for static build
bin/%_static.o: src/%.c $(HDR)
$(CC) $(CFLAGS) -c $< -o $@
# Clean target
clean_all:
$(RM) -rf bin/* lib/* docs/doxygen_output/*
# Clean object files
clean_obj:
$(RM) bin/*.o bin/*_shared.o bin/*_static.o
# Generate documentation
doc:
doxygen Doxyfile