Remove unused pkg dependancy
[platform/upstream/iotivity.git] / extlibs / tinydtls / tests / Makefile.in
1 # Makefile for tinydtls
2 #
3 # Copyright (C) 2011 Olaf Bergmann <bergmann@tzi.org>
4 #
5 # Permission is hereby granted, free of charge, to any person
6 # obtaining a copy of this software and associated documentation
7 # files (the "Software"), to deal in the Software without
8 # restriction, including without limitation the rights to use, copy,
9 # modify, merge, publish, distribute, sublicense, and/or sell copies
10 # of the Software, and to permit persons to whom the Software is
11 # furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 # SOFTWARE.
24
25 # the library's version
26 VERSION:=@PACKAGE_VERSION@
27
28 # tools
29 @SET_MAKE@
30 SHELL = /bin/sh
31 MKDIR = mkdir
32
33 abs_builddir = @abs_builddir@
34 top_builddir = @top_builddir@
35 top_srcdir:= @top_srcdir@
36
37 # files and flags
38 SOURCES:= dtls-server.c ccm-test.c prf-test.c \
39   dtls-client.c
40   #cbc_aes128-test.c #dsrv-test.c
41 OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
42 PROGRAMS:= $(patsubst %.c, %, $(SOURCES))
43 HEADERS:=
44 CFLAGS:=-Wall @CFLAGS@
45 CPPFLAGS:=-I$(top_srcdir) @CPPFLAGS@
46 LDFLAGS:=-L$(top_builddir)
47 LDLIBS:=-ltinydtls @LIBS@
48 DISTDIR=$(top_builddir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
49 FILES:=Makefile.in $(SOURCES) ccm-testdata.c #cbc_aes128-testdata.c
50
51 .PHONY: all dirs clean distclean .gitignore doc
52
53 .SUFFIXES:
54 .SUFFIXES:      .c .o
55
56 all:    $(PROGRAMS)
57
58 check:  
59         echo DISTDIR: $(DISTDIR)
60         echo top_builddir: $(top_builddir)
61
62 clean:
63         @rm -f $(PROGRAMS) main.o $(LIB) $(OBJECTS)
64         for dir in $(SUBDIRS); do \
65                 $(MAKE) -C $$dir clean ; \
66         done
67
68 doc:    
69         $(MAKE) -C doc
70
71 distclean:      clean
72         @rm -rf $(DISTDIR)
73         @rm -f *~ $(DISTDIR).tar.gz
74
75 dist:   $(FILES)
76         test -d $(DISTDIR)/tests || mkdir $(DISTDIR)/tests
77         cp $(FILES) $(DISTDIR)/tests
78
79 # this directory contains no installation candidates
80 install:
81         :
82
83 .gitignore:
84         echo "core\n*~\n*.[oa]\n*.gz\n*.cap\n$(PROGRAM)\n$(DISTDIR)\n.gitignore" >$@