source: soft/giet_vm/memo/Makefile @ 173

Last change on this file since 173 was 173, checked in by karaoui, 12 years ago

Adding BLOB type for vobj.
Don't forget to set as BLOB type the mapping_info vobj in the xml.

File size: 469 bytes
Line 
1SRCS += $(wildcard src/*.cpp)
2SRCS += $(wildcard src/libelfpp/*)
3SRCS += main.cpp
4
5HDRS += $(wildcard include/*)
6HDRS += $(wildcard include/libelfpp/elfpp/*)
7HDRS += $(wildcard include/libelfpp/dpp/*)
8
9INCLUDES = -Iinclude/libelfpp -Iinclude/libelfpp/elfpp -Iinclude/ -I../xml
10memo.x: $(SRCS) $(HDRS)
11        g++ -Wall -g  $(SRCS) $(INCLUDES) -o memo.x
12
13debug: $(SRCS) $(HDRS)
14        g++ -Wall -DMOVER_DEBUG -g  $(SRCS) $(INCLUDES) -o debug.x
15
16check:
17        test/check.sh
18
19clean:
20        rm *.x
Note: See TracBrowser for help on using the repository browser.