miniupnp/miniupnpc-libevent/Makefile

72 lines
1.5 KiB
Makefile
Raw Normal View History

# $Id: Makefile,v 1.7 2014/11/28 13:14:19 nanard Exp $
OS = $(shell uname -s)
2015-10-02 16:57:53 +00:00
PKG_CONFIG ?= pkg-config
2014-11-12 15:56:35 +00:00
CFLAGS = -O0 -g -DDEBUG
# libevent debug
2014-11-12 15:56:35 +00:00
CFLAGS += -DUSE_DEBUG
CFLAGS += -fPIC
CFLAGS += -ansi
CFLAGS += -Wall -W
CFLAGS += -D_BSD_SOURCE
ifneq ($(OS), Darwin)
ifneq ($(OS), FreeBSD)
CFLAGS += -D_POSIX_C_SOURCE=200112L
endif
endif
2015-10-02 16:57:53 +00:00
#CFLAGS += -I/usr/local/include
CFLAGS += $(shell $(PKG_CONFIG) --cflags libevent)
2014-11-12 15:56:35 +00:00
#CFLAGS += -DENABLE_UPNP_EVENTS
2015-10-02 16:57:53 +00:00
#LDLIBS = -levent
LDLIBS = $(shell $(PKG_CONFIG) --libs-only-l libevent)
#LDFLAGS += -L/usr/local/lib
LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L libevent)
2014-11-12 15:56:35 +00:00
ifeq ($(OS), Darwin)
CFLAGS += -D_DARWIN_C_SOURCE
2015-10-02 16:57:53 +00:00
#CFLAGS += -I/opt/local/include
#LDFLAGS += -L/opt/local/lib
endif
2014-11-12 15:56:35 +00:00
LIB = libminiupnpc-ev.a
LIB_SRCS = miniupnpc-libevent.c minixml.c igd_desc_parse.c upnpreplyparse.c
SRCS = $(LIB_SRCS) upnpc-libevent.c
LIB_OBJS = $(patsubst %.c,%.o,$(LIB_SRCS))
OBJS = $(patsubst %.c,%.o,$(SRCS))
EXECUTABLE = upnpc-libevent
.PHONY: all clean depend
all: $(EXECUTABLE)
clean:
$(RM) $(OBJS)
$(RM) $(EXECUTABLE)
$(RM) $(LIB)
2014-11-12 15:56:35 +00:00
upnpc-libevent: upnpc-libevent.o $(LIB)
$(LIB): $(LIB_OBJS)
$(AR) crs $@ $?
depend:
makedepend -Y -- $(CFLAGS) -- $(SRCS) 2>/dev/null
# DO NOT DELETE THIS LINE -- make depend depends on it.
miniupnpc-libevent.o: miniupnpc-libevent.h declspec.h upnpreplyparse.h
miniupnpc-libevent.o: minixml.h igd_desc_parse.h
2014-11-12 15:56:35 +00:00
minixml.o: minixml.h
igd_desc_parse.o: igd_desc_parse.h
upnpreplyparse.o: upnpreplyparse.h minixml.h
upnpc-libevent.o: miniupnpc-libevent.h declspec.h upnpreplyparse.h