source:
soft/giet_vm/mover/Makefile
@
161
Last change on this file since 161 was 160, checked in by , 13 years ago | |
---|---|
File size: 360 bytes |
Rev | Line | |
---|---|---|
[160] | 1 | SRCS += $(wildcard src/*.cpp) |
2 | SRCS += $(wildcard src/libelfpp/*) | |
3 | SRCS += main.cpp | |
4 | ||
5 | HDRS += $(wildcard include/*) | |
6 | HDRS += $(wildcard include/libelfpp/elfpp/*) | |
7 | HDRS += $(wildcard include/libelfpp/dpp/*) | |
8 | ||
9 | INCLUDES = -Iinclude/libelfpp -Iinclude/libelfpp/elfpp -Iinclude/ | |
10 | ||
11 | mover.x: $(SRCS) $(HDRS) | |
12 | g++ -Wall -g $(SRCS) $(INCLUDES) -o mover.x | |
13 | ||
14 | clean: | |
15 | rm mover.x |
Note: See TracBrowser
for help on using the repository browser.