source: soft/giet_vm/memo/Makefile @ 187

Last change on this file since 187 was 187, checked in by alain, 12 years ago

Introducing support for distributed schedulers in the "memo" tool.

File size: 541 bytes
RevLine 
[163]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
[165]9INCLUDES = -Iinclude/libelfpp -Iinclude/libelfpp/elfpp -Iinclude/ -I../xml
[163]10memo.x: $(SRCS) $(HDRS)
[187]11        #g++ -Wall -g  $(SRCS) $(INCLUDES) -o memo.x
12        g++ -Wall -g -DDISTRIBUTED_SCHEDULERS   $(SRCS) $(INCLUDES) -o memo.x
[163]13
[173]14debug: $(SRCS) $(HDRS)
15        g++ -Wall -DMOVER_DEBUG -g  $(SRCS) $(INCLUDES) -o debug.x
16
17check:
18        test/check.sh
19
[163]20clean:
[173]21        rm *.x
Note: See TracBrowser for help on using the repository browser.