mirror of https://github.com/sipwise/sems.git
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.
28 lines
350 B
28 lines
350 B
|
|
|
|
.PHONY: all clean
|
|
all clean:
|
|
$(MAKE) -C src/ $@
|
|
|
|
.PHONY: test
|
|
test: all
|
|
$(MAKE) -C tests/
|
|
testclean:
|
|
$(MAKE) -C tests/ clean
|
|
|
|
.PHONY: tags
|
|
tags:
|
|
cscope -RUb
|
|
|
|
.PHONY: distclean
|
|
distclean: clean testclean
|
|
rm -rf cscope.*
|
|
|
|
.PHONY: install
|
|
install: all
|
|
$(MAKE) -f Makefile.install $@
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
$(MAKE) -f Makefile.install $@
|