aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 6b4b6e1f895a6b047a2f78fbbbbea8b281281599 (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
34
35
36
CC      := gcc
LIB     := bin/libsalis.so
ULIB    := /usr/lib/libsalis.so

SOURCES := $(wildcard src/*.c)
OBJECTS := $(patsubst src/%.c,build/%.o,$(SOURCES))
DEPS    := $(patsubst %.o,%.d,$(OBJECTS))

LFLAGS  := -shared

# uncomment for debug
# OFLAGS  := -ggdb

# uncomment for release
OFLAGS  := -O3 -DNDEBUG

CFLAGS  := -Iinclude -c $(OFLAGS) -MMD -Wall -Wextra -std=c89 -fPIC \
           -pedantic-errors -Wmissing-prototypes -Wstrict-prototypes \
           -Wold-style-definition

all: $(OBJECTS)
	$(CC) $(LFLAGS) -o $(LIB) $(OBJECTS)
	$(MAKE) -C tsalis

-include $(DEPS)

$(OBJECTS): $(patsubst build/%.o,src/%.c,$@)
	$(CC) $(CFLAGS) $(patsubst build/%.o,src/%.c,$@) -o $@

clean:
	-rm build/*
	-rm $(LIB)
	$(MAKE) clean -C tsalis

install:
	cp $(LIB) $(ULIB)