You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/lib/Makefile.nonser

33 lines
483 B

# variables to change
INCLUDES += -I$(CURDIR)
LIBS += -L$(CURDIR)/cds -L$(CURDIR)/qsa
DEFS += -Wall
####################################
# make rules
export LIBS
export DEFS
export INCLUDES
SUBDIRS=binrpc cds xcap presence
.PHONY: subdirs $(SUBDIRS)
# clean install tags proper
subdirs: $(SUBDIRS)
$(SUBDIRS):
@echo "Making $(MAKECMDGOALS) in $@" ; $(MAKE) -f Makefile.nonser $(MAKECMDGOALS) -C $@
all: subdirs
proper: clean
clean: subdirs
install: subdirs