Merge pull request #36 from eadrkir/master
[deliverable/titan.core.git] / Makefile
1 ##############################################################################
2 # Copyright (c) 2000-2016 Ericsson Telecom AB
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Eclipse Public License v1.0
5 # which accompanies this distribution, and is available at
6 # http://www.eclipse.org/legal/epl-v10.html
7 #
8 # Contributors:
9 # Kirjak, Adrien
10 #
11 # not ready
12 ##############################################################################
13 #TOPDIR := ../..
14 #include $(TOPDIR)/Makefile.regression
15
16 #ifdef LCOV
17 #COVERAGE_FLAG := -C
18 #endif
19
20 MAKE := make
21
22 MAKECLEAN := make clean
23
24 run:
25 $(TTCN3_DIR)/bin/ttcn3_makefilegen -f -t pos_conf_tests.tpd && \
26 cd bin && \
27 $(MAKE) && \
28 $(TTCN3_DIR)/bin/ttcn3_start pos_conf_tests pos_conf_tests.cfg && \
29 cd ..
30
31 clean:
32 cd bin && \
33 $(MAKECLEAN) && \
34 cd ..
35
36 .PHONY: all clean run
37
38
39
This page took 0.029889 seconds and 5 git commands to generate.