-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
61 lines (55 loc) · 2.01 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# SCTP Conformance Test Suite Implementation
# (C) Copyright Fujitsu Ltd. 2008, 2009, 2010
#
# This file is part of the SCTP Conformance Test Suite implementation.
#
# The SCTP Conformance Test Suite implementation is free software;
# you can redistribute it and/or modify it under the terms of
# the GNU General Public License version 2 as published by
# the Free Software Foundation.
#
# The SCTP Conformance Test Suite implementation is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY; without even
# the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU CC; see the file COPYING. If not, write to
# the Free Software Foundation, 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# Please send any bug reports or fixes you make to the
# email address(es):
# networktest sctp <[email protected]>
#
# Or submit a bug report through the following website:
# http://networktest.sourceforge.net/
#
# Written or modified by:
# Hiroaki Kago <[email protected]>
# Wei Yongjun <[email protected]>
#
# Any bugs reported given to us we will try to fix... any fixes shared will
# be incorporated into the next SCTP release.
#
##############################################################################
INSTALL_DIR=$(TESTDIR)
COMMON_DIR=common etc config remotes
all:
install:
@for subdir in ${COMMON_DIR}; do \
echo "===> $$subdir"; \
(cd $$subdir; ${MAKE} $@); \
done
@for subdir in ${SUBDIRS}; do \
echo "===> $$subdir"; \
(cd $$subdir; ${MAKE} $@); \
done
install -d -o bin -g bin -m 755 $(INSTALL_DIR)
install -d -o bin -g bin -m 755 $(INSTALL_DIR)/etc
install -c -o bin -g bin -m 444 index.html $(INSTALL_DIR)
install -c -o bin -g bin -m 444 Makefile.inc $(INSTALL_DIR)
install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
include Makefile.test
include Makefile.inc