mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-07 04:03:53 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3772 d0543943-73ff-0310-b7d9-9358b9ac24b2
41 lines
621 B
Makefile
41 lines
621 B
Makefile
ifeq ($(SRCDIR)x,x)
|
|
SRCDIR = $(CURDIR)/../..
|
|
endif
|
|
|
|
include $(SRCDIR)/Makefile.config
|
|
|
|
CFLAGS = $(CFLAGS_COMMON) $(CFLAGS_PERSONAL) $(CADD)
|
|
LDFLAGS = -lpthread $(LADD)
|
|
|
|
INCLUDES = -I$(SRCDIR) -I$(SRCDIR)/src
|
|
|
|
default: all
|
|
|
|
.PHONY: all
|
|
all: xmlrpc_wininet_transport.lo
|
|
|
|
.PHONY: clean
|
|
clean: clean-common
|
|
|
|
.PHONY: distclean
|
|
distclean: clean distclean-common
|
|
|
|
.PHONY: tags
|
|
tags: TAGS
|
|
|
|
.PHONY: distdir
|
|
distdir:
|
|
|
|
.PHONY: install
|
|
install:
|
|
|
|
.PHONY: dep
|
|
dep: dep-common
|
|
|
|
include $(SRCDIR)/Makefile.common
|
|
|
|
include Makefile.depend
|
|
|
|
xmlrpc_wininet_transport.lo:%.lo:%.c
|
|
$(LIBTOOL) --mode=compile $(CC) -c $(INCLUDES) $(CFLAGS) $<
|