Last change
on this file was
244,
checked in by brejon, 11 years ago
|
- Update malloc (remote free)
- bugfix in spin_lock (bad register used in asm inline)
- memo/Makefile clean rule : added "-f" option to rm command
- main Makefile :
- added spin_lock.o in dhrystone object files
- added rules to compile spin_lock
|
File size:
498 bytes
|
Rev | Line | |
---|
[163] | 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 | |
---|
[165] | 9 | INCLUDES = -Iinclude/libelfpp -Iinclude/libelfpp/elfpp -Iinclude/ -I../xml |
---|
[163] | 10 | memo.x: $(SRCS) $(HDRS) |
---|
[197] | 11 | g++ -Wall -g -DDISTRIBUTED_SCHEDULERS $(SRCS) $(INCLUDES) -o memo.x |
---|
[163] | 12 | |
---|
[173] | 13 | debug: $(SRCS) $(HDRS) |
---|
| 14 | g++ -Wall -DMOVER_DEBUG -g $(SRCS) $(INCLUDES) -o debug.x |
---|
| 15 | |
---|
| 16 | check: |
---|
| 17 | test/check.sh |
---|
| 18 | |
---|
[163] | 19 | clean: |
---|
[244] | 20 | rm -f *.x |
---|
Note: See
TracBrowser
for help on using the repository browser.