summaryrefslogtreecommitdiff
path: root/tools/fado/lib/vc_vector/Makefile
blob: 129ee97e39b4d955f970cf6ded630a41a122ef68 (plain)
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
OUT_DIR := build
CFLAGS := -O2 -g -std=c99 -Wall -Wextra -Wpedantic -Werror

SRCS := $(wildcard *.c)
OBJS := $(patsubst %.c,$(OUT_DIR)/%.o,$(SRCS))

LIB_NAME := vc-vector
SOBJ := $(OUT_DIR)/lib$(LIB_NAME).so

.PHONY: all lib test clean

all: lib

lib: $(SOBJ)

test: $(OUT_DIR)/test_runner
	$(OUT_DIR)/test_runner

clean:
	rm -rf $(OUT_DIR)

$(OUT_DIR):
	mkdir -p $(OUT_DIR)

$(SOBJ): vc_vector.c | $(OUT_DIR)
	$(CC) $(CFLAGS) -shared -fPIC $< -o $@

$(OUT_DIR)/%.o: %.c | $(OUT_DIR)
	$(CC) $(CFLAGS) -c $< -o $@

$(OUT_DIR)/test_runner: $(OBJS) | $(OUT_DIR)
	$(CC) $^ -o $@