88 lines
2.4 KiB
Makefile
88 lines
2.4 KiB
Makefile
# $Id: Makefile,v 1.23 2014/12/06 10:54:01 nanard Exp $
|
|
# MiniUPnP project
|
|
# author: Thomas Bernard
|
|
# website: http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
# for use with GNU Make (gmake)
|
|
# install with :
|
|
# $ PREFIX=/tmp/dummylocation make install
|
|
# or
|
|
# $ INSTALLPREFIX=/usr/local make install
|
|
# or
|
|
# make install (miniupnpd will be put in /usr/sbin)
|
|
#
|
|
# install target is made for linux... sorry BSD users...
|
|
#CFLAGS = -g -O0
|
|
CFLAGS ?= -Os
|
|
CFLAGS += -Wall
|
|
CFLAGS += -W -Wstrict-prototypes
|
|
CFLAGS += -fno-strict-aliasing -fno-common
|
|
CFLAGS += -D_GNU_SOURCE
|
|
CFLAGS += -ansi
|
|
CC = gcc
|
|
RM = rm -f
|
|
INSTALL = install
|
|
OS = $(shell uname -s)
|
|
|
|
ifeq ($(OS), Linux)
|
|
LDLIBS += -lnfnetlink
|
|
endif
|
|
ifeq ($(DEB_BUILD_ARCH_OS), kfreebsd)
|
|
LDLIBS += -lfreebsd-glue
|
|
endif
|
|
|
|
#EXECUTABLES = minissdpd testminissdpd listifaces
|
|
EXECUTABLES = minissdpd testminissdpd testcodelength
|
|
MINISSDPDOBJS = minissdpd.o openssdpsocket.o daemonize.o upnputils.o \
|
|
ifacewatch.o getroute.o getifaddr.o asyncsendto.o
|
|
TESTMINISSDPDOBJS = testminissdpd.o
|
|
|
|
ALLOBJS = $(MINISSDPDOBJS) $(TESTMINISSDPDOBJS) testcodelength.o
|
|
|
|
INSTALLPREFIX ?= $(PREFIX)/usr
|
|
SBININSTALLDIR = $(INSTALLPREFIX)/sbin
|
|
MANINSTALLDIR = $(INSTALLPREFIX)/share/man
|
|
|
|
|
|
.PHONY: all clean install depend
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
clean:
|
|
$(RM) $(ALLOBJS) $(EXECUTABLES)
|
|
|
|
install: minissdpd
|
|
$(INSTALL) -d $(SBININSTALLDIR)
|
|
$(INSTALL) minissdpd $(SBININSTALLDIR)
|
|
$(INSTALL) -d $(MANINSTALLDIR)/man1
|
|
$(INSTALL) minissdpd.1 $(MANINSTALLDIR)/man1/minissdpd.1
|
|
ifneq ($(OS), Darwin)
|
|
$(INSTALL) -d $(PREFIX)/etc/init.d
|
|
$(INSTALL) minissdpd.init.d.script $(PREFIX)/etc/init.d/minissdpd
|
|
endif
|
|
|
|
minissdpd: $(MINISSDPDOBJS)
|
|
|
|
testminissdpd: $(TESTMINISSDPDOBJS)
|
|
|
|
testcodelength: testcodelength.o
|
|
|
|
listifaces: listifaces.o upnputils.o
|
|
|
|
depend:
|
|
makedepend -f$(MAKEFILE_LIST) -Y \
|
|
$(ALLOBJS:.o=.c) 2>/dev/null
|
|
|
|
# DO NOT DELETE
|
|
|
|
minissdpd.o: config.h getifaddr.h upnputils.h openssdpsocket.h
|
|
minissdpd.o: minissdpdtypes.h daemonize.h codelength.h ifacewatch.h
|
|
minissdpd.o: asyncsendto.h
|
|
openssdpsocket.o: config.h openssdpsocket.h minissdpdtypes.h upnputils.h
|
|
daemonize.o: daemonize.h config.h
|
|
upnputils.o: config.h upnputils.h getroute.h minissdpdtypes.h
|
|
ifacewatch.o: config.h openssdpsocket.h minissdpdtypes.h upnputils.h
|
|
getroute.o: getroute.h upnputils.h
|
|
getifaddr.o: config.h getifaddr.h
|
|
asyncsendto.o: asyncsendto.h upnputils.h
|
|
testcodelength.o: codelength.h
|