1
0
mirror of https://github.com/danog/php-libtgvoip.git synced 2024-11-26 11:54:44 +01:00
php-libtgvoip/Makefile

148 lines
4.6 KiB
Makefile
Raw Permalink Normal View History

2017-04-05 03:46:16 +02:00
# Copyright 2016-2017 Daniil Gentili
# (https://daniil.it)
# This file is part of php-libtgvoip.
# php-libtgvoip 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.
# The PWRTelegram API 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 General Public License along with php-libtgvoip.
# If not, see <http://www.gnu.org/licenses/>.
include $(CLEAR_VARS)
2019-03-29 14:07:22 +01:00
DEFINES =
2020-03-01 16:30:57 +01:00
INCLUDES = -Ilibtgvoip
2017-08-05 09:22:22 +02:00
LDINCLUDES =
2020-03-01 16:30:57 +01:00
CXXFLAGS = ${INCLUDES} ${DEFINES} -O3 -Wall -c -std=c++17 -fpic -g
2019-03-29 14:07:22 +01:00
CFLAGS = ${INCLUDES} ${DEFINES} -O3 -fexceptions -fpic -g
2017-04-05 03:46:16 +02:00
2019-03-29 14:07:22 +01:00
LFLAGS = -shared ${LDINCLUDES} -ltgvoip -lphpcpp
2017-04-05 03:46:16 +02:00
include $(BUILD_STATIC_LIBRARY)
#
# Name of your extension
#
# This is the name of your extension. Based on this extension name, the
# name of the library file (name.so) and the name of the config file (name.ini)
# are automatically generated
#
NAME = libtgvoip
#
# Php.ini directories
#
# In the past, PHP used a single php.ini configuration file. Today, most
# PHP installations use a conf.d directory that holds a set of config files,
# one for each extension. Use this variable to specify this directory.
#
2022-05-04 17:18:36 +02:00
INI_DIR = $(shell php7.4 --ini | sed '/Scan for additional .ini files in: /!d;s/Scan for additional .ini files in: //')
2017-04-05 03:46:16 +02:00
#
# The extension dirs
#
# This is normally a directory like /usr/lib/php5/20121221 (based on the
# PHP version that you use. We make use of the command line 'php-config'
# instruction to find out what the extension directory is, you can override
# this with a different fixed directory
#
2022-05-04 17:18:36 +02:00
EXTENSION_DIR = $(shell php-config7.4 --extension-dir)
2017-04-05 03:46:16 +02:00
#
# The name of the extension and the name of the .ini file
#
# These two variables are based on the name of the extension. We simply add
# a certain extension to them (.so or .ini)
#
EXTENSION = ${NAME}.so
INI = ${NAME}.ini
#
# Compiler
#
# By default, the GNU C++ compiler is used. If you want to use a different
# compiler, you can change that here. You can change this for both the
# compiler (the program that turns the c++ files into object files) and for
# the linker (the program that links all object files into the single .so
# library file. By default, g++ (the GNU C++ compiler) is used for both.
#
COMPILER = g++
LINKER = g++
#
# Compiler and linker flags
#
# This variable holds the flags that are passed to the compiler. By default,
# we include the -O2 flag. This flag tells the compiler to optimize the code,
# but it makes debugging more difficult. So if you're debugging your application,
# you probably want to remove this -O2 flag. At the same time, you can then
# add the -g flag to instruct the compiler to include debug information in
# the library (but this will make the final libphpcpp.so file much bigger, so
# you want to leave that flag out on production servers).
#
# If your extension depends on other libraries (and it does at least depend on
# one: the PHP-CPP library), you should update the LINKER_DEPENDENCIES variable
# with a list of all flags that should be passed to the linker.
#
#
# Command to remove files, copy files and create directories.
#
# I've never encountered a *nix environment in which these commands do not work.
# So you can probably leave this as it is
#
RM = rm -f
CP = cp -f
2017-06-22 14:48:52 +02:00
MKDIR = mkdir -p
2017-04-05 03:46:16 +02:00
#
# All source files are simply all *.cpp files found in the current directory
#
# A builtin Makefile macro is used to scan the current directory and find
# all source files. The object files are all compiled versions of the source
# file, with the .cpp extension being replaced by .o.
#
2019-03-30 21:45:57 +01:00
TGVOIP = libtgvoip/build/libtgvoip.la
2019-03-29 14:07:22 +01:00
SOURCES = $(wildcard *.cpp)
2017-06-27 12:18:27 +02:00
OBJECTS_CPP = $(SOURCES:%.cpp=%.o)
OBJECTS_CC = $(OBJECTS_CPP:%.cc=%.o)
OBJECTS = $(OBJECTS_CC:%.c=%.o)
2017-04-05 03:46:16 +02:00
#
# From here the build instructions start
#
2019-03-30 21:45:57 +01:00
all: ${TGVOIP} ${OBJECTS} ${EXTENSION}
2019-03-29 20:19:28 +01:00
2019-03-30 21:45:57 +01:00
${TGVOIP}:
2019-10-29 13:59:06 +01:00
cd libtgvoip && autoreconf -vfi && ${MKDIR} build && cd build && ../configure --enable-desktop-dsp --enable-opus-music --enable-audio-callback --prefix=/usr && make -j$(shell nproc) && sudo make install && cd ../..
2017-04-05 03:46:16 +02:00
2017-06-19 23:38:03 +02:00
${EXTENSION}: ${OBJECTS}
2017-07-01 14:33:51 +02:00
${CXX} -o $@ ${OBJECTS} ${LFLAGS}
2017-04-05 03:46:16 +02:00
${OBJECTS}:
2017-06-27 12:18:27 +02:00
2017-06-19 23:38:03 +02:00
2017-07-26 08:31:52 +02:00
install:
2017-06-19 23:38:03 +02:00
${CP} ${EXTENSION} ${EXTENSION_DIR}
${CP} ${INI} ${INI_DIR}
2017-04-05 03:46:16 +02:00
clean:
2017-06-19 23:38:03 +02:00
${RM} ${EXTENSION} ${OBJECTS}
2019-03-29 20:19:28 +01:00
cd libtgvoip/build && make clean
2017-04-05 03:46:16 +02:00