source: soft/giet_vm/mover/Makefile @ 160

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

giet-vm new version

File size: 360 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/
10
11mover.x: $(SRCS) $(HDRS)
12        g++ -Wall -g  $(SRCS) $(INCLUDES) -o mover.x
13
14clean:
15        rm mover.x
Note: See TracBrowser for help on using the repository browser.