comparison g23m/system/nds_update_makefile.mak @ 0:509db1a7b7b8

initial import: leo2moko-r1
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 01 Jun 2015 03:24:05 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:509db1a7b7b8
1 #!perl -w
2 #-------------------------------------------------------------------------------
3 # Project : Nice Delivery System
4 # Module : nds_update_makefile
5 #-------------------------------------------------------------------------------
6 # Copyright: 2004 Texas Instruments France SA
7 # All rights reserved.
8 #
9 # This file is confidential and a trade secret of Texas
10 # Instruments.
11 # The receipt of or possession of this file does not convey
12 # any rights to reproduce or disclose its contents or to
13 # manufacture, use, or sell anything it may describe, in
14 # whole, or in part, without the specific written consent of
15 # Texas Instruments Framce SA.
16 #-------------------------------------------------------------------------------
17 # Authors : jr Joachim Richter
18 # ib Isabelle Biffi
19 #-------------------------------------------------------------------------------
20 # Versions: 2.0 ib
21 #-------------------------------------------------------------------------------
22
23 # this makefile must be called from \g23m\system
24 # otherwise most pathes won't work
25 #
26 SHELL = sh.exe
27 BUSYB_INI_FILE = system/unbusy_g23m.ini
28
29 $(MFILE): $(XMLFILE) \
30 system/busyb/*.xml \
31 system/busyb/sourcesets/*.xml \
32 system/busyb/boarddefs/*.xml \
33 system/busyb/deliverydefs/*.xml \
34 system/busyb/featuredefs/*.xml \
35 system/busyb/productdefs/*.xml
36 java "-Xbootclasspath/a:../gpf/tools/lib/java/xercesimpl.jar;../gpf/tools/lib/java/xom.jar" \
37 -jar ../gpf/bin/busyb.jar -ini $(BUSYB_INI_FILE) -g -out busyb_tmp1.mak -cfg ./$<
38 perl system/busyb/tools/tune_mak_buildconfig.pl busyb_tmp1.mak busyb_tmp2.mak $(XMLFILE)
39 perl system/busyb/tools/tune_mak.pl busyb_tmp2.mak $@ dummy
40 rm busyb_tmp1.mak
41 rm busyb_tmp2.mak
42