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