aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 156a068b745f1affee474371712007e9f57a8d50 (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
CC := gcc
LIB := bin/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 -Wno-unused-function -Wno-unused-result \
	-Wno-unused-variable

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

all: $(OBJECTS)
	$(CC) $(LFLAGS) -fopenmp -o $(LIB) $(OBJECTS)

-include $(DEPS)

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

clean:
	-rm build/*
	-rm $(LIB)