This is originally from git@github.com:YanziNetworks/tinyDTLS.git commit d7ca5120e7e853f76e9743db2a0236a26ba71363 Change-Id: I6e6c2da76e11b473ead1b0ddac929f8bd670d7e3 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
28 lines
475 B
Makefile
28 lines
475 B
Makefile
# the library's version
|
|
VERSION:=@PACKAGE_VERSION@
|
|
|
|
# tools
|
|
@SET_MAKE@
|
|
SHELL = /bin/sh
|
|
MKDIR = mkdir
|
|
|
|
top_builddir = @top_builddir@
|
|
|
|
THIS=platform-specific
|
|
DISTDIR?=$(top_builddir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
|
|
FILES:=Makefile.in $(wildcard *.h)
|
|
|
|
clean:
|
|
|
|
distclean: clean
|
|
@rm -rf $(DISTDIR)
|
|
@rm -f *~
|
|
|
|
dist:
|
|
test -d $(DISTDIR)/$(THIS) || mkdir $(DISTDIR)/$(THIS)
|
|
cp -r $(FILES) $(DISTDIR)/$(THIS)
|
|
|
|
# this directory contains no installation candidates
|
|
install:
|
|
:
|