2021-04-09 19:59:52 +02:00
|
|
|
#=----------------------------------------------------------------------------=#
|
|
|
|
# Makefile #
|
|
|
|
# #
|
|
|
|
# Copyright © 2021 The Gem-graph Project #
|
|
|
|
# #
|
|
|
|
# This file is part of gem-graph. #
|
|
|
|
# #
|
|
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU Affero General Public License as #
|
|
|
|
# published by the Free Software Foundation, either version 3 of the #
|
|
|
|
# License, or (at your option) any later version. #
|
|
|
|
# #
|
|
|
|
# This program is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU Affero General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU Affero General Public License #
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
|
|
|
#=----------------------------------------------------------------------------=#
|
|
|
|
|
2021-04-09 18:01:29 +02:00
|
|
|
CCOPTS=-pthread -fPIC -fwrapv -Wall -fno-strict-aliasing
|
|
|
|
CCFLAGS=-I /usr/include/python3.9
|
2021-04-09 19:59:52 +02:00
|
|
|
LDFLAGS=-lpython3.9 -lpthread -lm -lutil -ldl
|
2021-06-08 18:05:32 +02:00
|
|
|
BINDIR=bin
|
|
|
|
SRCDIR=src
|
2021-04-10 22:03:38 +02:00
|
|
|
DYNLIBS= $(BINDIR)/scheduler.so $(BINDIR)/server.so $(BINDIR)/localthread.so
|
2021-04-09 19:59:52 +02:00
|
|
|
|
2021-06-08 18:05:32 +02:00
|
|
|
.DEFAULT_GOAL:= all
|
|
|
|
.PHONY: all clean
|
|
|
|
.PRECIOUS: $(SRCDIR)/%.c
|
|
|
|
|
2021-04-10 22:03:38 +02:00
|
|
|
# ---- General recipes ------------------------------------------------------- #
|
|
|
|
|
2021-06-08 18:05:32 +02:00
|
|
|
$(BINDIR)/%.so: $(SRCDIR)/%.c
|
2021-04-10 22:03:38 +02:00
|
|
|
@echo "Building dynamic library $@"
|
|
|
|
@$(CC) --shared $(CCOPTS) $(CCFLAGS) -o $@ $<
|
2021-04-09 18:01:29 +02:00
|
|
|
|
2021-06-08 18:05:32 +02:00
|
|
|
$(SRCDIR)/%.c: $(SRCDIR)/%.py
|
2021-04-10 22:03:38 +02:00
|
|
|
@echo "Cythonizing $< to $@"
|
2021-04-10 23:02:40 +02:00
|
|
|
@cython3 -3 $< -o $@
|
|
|
|
|
2021-04-10 22:03:38 +02:00
|
|
|
# ---- Main recipe ----------------------------------------------------------- #
|
2021-06-08 18:05:32 +02:00
|
|
|
$(BINDIR)/gem-graph-server: $(SRCDIR)/main.c
|
2021-04-10 22:03:38 +02:00
|
|
|
@echo "Building program to $@"
|
2021-04-10 22:42:10 +02:00
|
|
|
@$(CC) $(CCOPTS) -no-pie $(CCFLAGS) -o $@ $< $(LDFLAGS)
|
2021-04-10 22:03:38 +02:00
|
|
|
@echo "Success!"
|
2021-04-09 18:01:29 +02:00
|
|
|
|
2021-06-08 18:05:32 +02:00
|
|
|
$(SRCDIR)/main.c: $(SRCDIR)/main.py
|
2021-04-10 22:03:38 +02:00
|
|
|
@echo "Cythonizing main file to $@"
|
2021-04-10 23:02:40 +02:00
|
|
|
@cython3 -3 $< -o $@ --embed
|
2021-04-09 18:01:29 +02:00
|
|
|
|
|
|
|
|
2021-04-10 22:03:38 +02:00
|
|
|
# ---- Misc recipes ---------------------------------------------------------- #
|
|
|
|
clean:
|
2021-06-08 18:05:32 +02:00
|
|
|
rm -rf $(SRCDIR)/*.c $(BINDIR)/*
|
2021-04-09 18:01:29 +02:00
|
|
|
|
2021-04-10 23:23:41 +02:00
|
|
|
all: $(DYNLIBS) $(BINDIR)/gem-graph-server
|