gem-graph-server/src/Makefile

59 lines
2.6 KiB
Makefile
Raw Normal View History

#=----------------------------------------------------------------------------=#
# 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-10 23:02:40 +02:00
.DEFAULT_GOAL:= all
2021-04-10 23:23:41 +02:00
.PHONY: all clean
2021-04-10 23:02:40 +02:00
.PRECIOUS: %.c
2021-04-09 18:01:29 +02:00
CCOPTS=-pthread -fPIC -fwrapv -Wall -fno-strict-aliasing
CCFLAGS=-I /usr/include/python3.9
LDFLAGS=-lpython3.9 -lpthread -lm -lutil -ldl
2021-04-10 22:03:38 +02:00
BINDIR=../bin
2021-04-10 22:03:38 +02:00
DYNLIBS= $(BINDIR)/scheduler.so $(BINDIR)/server.so $(BINDIR)/localthread.so
2021-04-10 22:03:38 +02:00
# ---- General recipes ------------------------------------------------------- #
$(BINDIR)/%.so: %.c
@echo "Building dynamic library $@"
@$(CC) --shared $(CCOPTS) $(CCFLAGS) -o $@ $<
2021-04-09 18:01:29 +02:00
2021-04-10 23:02:40 +02:00
%.c: %.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-04-10 23:02:40 +02:00
$(BINDIR)/gem-graph-server: main.c
2021-04-10 22:03:38 +02:00
@echo "Building program to $@"
@$(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-04-10 22:03:38 +02:00
main.c: main.py
@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:
rm -rf *.c ../bin/*
2021-04-09 18:01:29 +02:00
2021-04-10 23:23:41 +02:00
all: $(DYNLIBS) $(BINDIR)/gem-graph-server