⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 This a software PBX driver
💻
字号:
## libpri: An implementation of Primary Rate ISDN## Written by Mark Spencer <markster@linux-support.net>## Copyright (C) 2001, Linux Support Services, Inc.# All Rights Reserved.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 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 General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ### Uncomment if you want libpri not send PROGRESS_INDICATOR w/ALERTING#ALERTING=-DALERTING_NO_PROGRESS# Uncomment if you want libpri to count number of Q921/Q931 sent/received#LIBPRI_COUNTERS=-DLIBPRI_COUNTERSOSARCH=$(shell uname -s)PROC=$(shell uname -m)TOBJS=testpri.oT2OBJS=testprilib.oSTATIC_LIBRARY=libpri.aDYNAMIC_LIBRARY=libpri.so.1.0STATIC_OBJS=pri.o q921.o prisched.o q931.oDYNAMIC_OBJS=pri.lo q921.lo prisched.lo q931.loCFLAGS=-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes -g $(ALERTING) $(LIBPRI_COUNTERS)INSTALL_PREFIX=ifeq (${OSARCH},Linux)LDCONFIG_FLAGS=-nelseifeq (${OSARCH},FreeBSD)LDCONFIG_FLAGS=-mCFLAGS += -I../zaptel -I../zapataendifendif#The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.#This works for even old (2.96) versions of gcc and provides a small boost either way.#A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesnt support it.ifeq ($(PROC),sparc64)PROC=ultrasparcCFLAGS += -mtune=$(PROC) -O3 -pipe -fomit-frame-pointer -mcpu=v8endifall: depend $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY)update:	@echo "Updating from CVS"	@cvs update -dinstall: $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY)	mkdir -p $(INSTALL_PREFIX)/usr/lib	mkdir -p $(INSTALL_PREFIX)/usr/include	install -m 644 libpri.h $(INSTALL_PREFIX)/usr/include	install -m 755 $(DYNAMIC_LIBRARY) $(INSTALL_PREFIX)/usr/lib	if [ -x /usr/sbin/sestatus ] && ( /usr/sbin/sestatus | grep "SELinux status:" | grep -q "enabled"); then  restorecon -v $(INSTALL_PREFIX)/$(INSTALL_BASE)/lib/$(DYNAMIC_LIBRARY); fi	( cd $(INSTALL_PREFIX)/usr/lib ; ln -sf libpri.so.1 libpri.so )	install -m 644 $(STATIC_LIBRARY) $(INSTALL_PREFIX)/usr/lib	/sbin/ldconfiguninstall:	@echo "Removing Libpri"	rm -f $(INSTALL_PREFIX)/usr/lib/libpri.so.1.0	rm -f $(INSTALL_PREFIX)/usr/lib/libpri.so	rm -f $(INSTALL_PREFIX)/usr/lib/libpri.a	rm -f $(INSTALL_PREFIX)/usr/include/libpri.hpritest: pritest.o	$(CC) -o pritest pritest.o -L. -lpri -lzap $(CFLAGS)testprilib.o: testprilib.c	$(CC) $(CFLAGS) -D_REENTRANT -D_GNU_SOURCE -o $@ -c $<testprilib: testprilib.o	$(CC) -o testprilib testprilib.o -L. -lpri -lpthread $(CFLAGS)pridump: pridump.o	$(CC) -o pridump pridump.o -L. -lpri -lzap $(CFLAGS)include .depend%.lo : %.c	$(CC) -fPIC $(CFLAGS) -o $@ -c $<$(STATIC_LIBRARY): $(STATIC_OBJS)	ar rcs $(STATIC_LIBRARY) $(STATIC_OBJS)	ranlib $(STATIC_LIBRARY)$(DYNAMIC_LIBRARY): $(DYNAMIC_OBJS)	$(CC) -shared -Wl,-soname,libpri.so.1 -o $@ $(DYNAMIC_OBJS)	/sbin/ldconfig $(LDCONFIG_FLAGS) .	ln -sf libpri.so.1 libpri.soclean:	rm -f *.o *.so *.lo *.so.1 *.so.1.0	rm -f testpri testprilib $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY)	rm -f pritest pridump	rm -f .dependdepend: .depend.depend: 	./mkdep ${CFLAGS} `ls *.c`

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -