os/security/securityanddataprivacytools/securitytools/certapp/GNUmakefile
author sl
Tue, 10 Jun 2014 14:32:02 +0200 (2014-06-10)
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
# All rights reserved.
sl@0
     3
# This component and the accompanying materials are made available
sl@0
     4
# under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
# which accompanies this distribution, and is available
sl@0
     6
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
#
sl@0
     8
# Initial Contributors:
sl@0
     9
# Nokia Corporation - initial contribution.
sl@0
    10
#
sl@0
    11
# Contributors:
sl@0
    12
#
sl@0
    13
# Description: 
sl@0
    14
#
sl@0
    15
sl@0
    16
include GNUmakefile.inc
sl@0
    17
sl@0
    18
INC=-Iutils -Istore-- -Iencdec -Iapi -I.
sl@0
    19
sl@0
    20
CERTAPP_TARGET=	certapp
sl@0
    21
TARGETS=$(CERTAPP_TARGET) 
sl@0
    22
sl@0
    23
CERTAPP_SRCS=certapp.cpp
sl@0
    24
CERTAPP_OBJS=$(CERTAPP_SRCS:.cpp=.o)
sl@0
    25
sl@0
    26
ALLSRCS=$(CERTAPP_SRCS)
sl@0
    27
ALLOBJS=$(ALLSRCS:.cpp=.o)
sl@0
    28
sl@0
    29
LDLIBS_GEN=encdec/encdec.a store--/store--.a utils/utils.a 
sl@0
    30
LDLIBS_API=api/libcertapp-api.a
sl@0
    31
sl@0
    32
DEPENDFILES=$(ALLOBJS:.o=.d)
sl@0
    33
sl@0
    34
sl@0
    35
all: $(TARGETS)
sl@0
    36
	make -C test
sl@0
    37
sl@0
    38
sl@0
    39
$(LDLIBS_GEN) $(LDLIBS_API): % : force
sl@0
    40
	$(MAKE) -C $(dir $@) $(notdir $@)
sl@0
    41
sl@0
    42
sl@0
    43
tags:
sl@0
    44
	etags *.cpp *.h *.inl */*.cpp */*.h */*.inl */*/*.cpp */*/*.h
sl@0
    45
	ls -l TAGS
sl@0
    46
sl@0
    47
sl@0
    48
$(CERTAPP_TARGET) : $(CERTAPP_OBJS) $(LDLIBS_GEN)
sl@0
    49
	$(LINK.C) $^ $(LOADLIBES) $(LDLIBS_GEN) -o $@ -lcrypto
sl@0
    50
sl@0
    51
.PHONY: clean
sl@0
    52
clean: cleanall
sl@0
    53
sl@0
    54
.PHONY: cleanall
sl@0
    55
cleanall:
sl@0
    56
	-$(MAKE) -C utils clean
sl@0
    57
	-$(MAKE) -C store-- clean
sl@0
    58
	-$(MAKE) -C encdec clean
sl@0
    59
	-rm -f $(TSTORE_OBJS) $(CERTAPP_OBJS) $(TARGETS) $(DEPENDFILES) core
sl@0
    60
sl@0
    61
sl@0
    62
include $(wildcard $(DEPENDFILES))