source: soft/giet_vm/giet_xml/Makefile @ 827

Last change on this file since 827 was 627, checked in by alain, 9 years ago

Add the "ltid" field in the mapping_task_t structure,
To support the giet_kill_application() and giet_exec_application() system calls.

  • Property svn:executable set to *
File size: 409 bytes
Line 
1
2all: xml2bin bin2xml
3
4bin2xml: xml_driver.c mapping_info.h
5        gcc -Wall -I. -I.. xml_driver.c -o bin2xml
6
7xml2bin: xml_parser.c mapping_info.h
8        gcc -Wall -I. -I.. -I../giet_kernel -I/usr/include/libxml2 xml_parser.c -o xml2bin -lxml2
9
10test:
11        ./xml2bin map.xml test.bin
12        ./bin2xml test.bin test.xml
13
14up_test:
15        ./xml2bin ../map.xml ../test.bin
16        ./bin2xml ../test.bin ../test.xml
17
18
19clean:
20        rm -f xml2bin bin2xml
Note: See TracBrowser for help on using the repository browser.