source: soft/giet_vm/memo/Makefile @ 163

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

changing mover to memo
changing soft.bin to soft.elf
...

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